Conference.php 489 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\admin\model\cms;
  3. use think\Model;
  4. class Conference extends Model
  5. {
  6. // 表名
  7. protected $name = 'cms_conference';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. public function user()
  14. {
  15. return $this->belongsTo("\app\common\model\User", 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
  16. }
  17. }