UserSignGift.php 449 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class UserSignGift extends Model
  5. {
  6. // 表名
  7. protected $name = 'user_sign_gift';
  8. // 开启自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. public function gift()
  14. {
  15. return $this->hasOne('Gift', 'id', 'gift_id',[],'LEFT');
  16. }
  17. }