| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace app\common\model;
- use think\Model;
- /**
- * 会员模型
- */
- class VideoContributionRecord extends Model
- {
- // 表名
- protected $name = 'video_contribution_record';
- // 开启自动写入时间戳字段
- protected $autoWriteTimestamp = 'int';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- // 追加属性
- protected $append = [];
- public function user()
- {
- return $this->belongsTo('User', 'uid', 'id', [], 'LEFT')->setEagerlyType(0);
- }
- public function videolist()
- {
- return $this->belongsTo('Videolist', 'vid', 'id', [], 'LEFT')->setEagerlyType(0);
- }
- }
|