EducationAuthentication.php 637 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class EducationAuthentication extends Model
  5. {
  6. // 表名
  7. protected $name = 'education_authentication';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'integer';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = false;
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. ];
  17. /**
  18. *
  19. */
  20. public function category(){
  21. return $this->belongsTo('Category', 'education', 'id', [], 'LEFT')->setEagerlyType(0);
  22. }
  23. }