Email.php 498 B

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