TaskOrder.php 485 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. /**
  5. * 会员模型
  6. */
  7. class TaskOrder extends Model
  8. {
  9. // 开启自动写入时间戳字段
  10. protected $autoWriteTimestamp = 'int';
  11. // 定义时间戳字段名
  12. protected $createTime = 'createtime';
  13. protected $updateTime = 'updatetime';
  14. // 追加属性
  15. protected $append = [];
  16. public function task()
  17. {
  18. return $this->belongsTo('Task', 'oid', 'id', [], 'LEFT')->setEagerlyType(0);
  19. }
  20. }