123456789101112131415161718192021 |
- <?php
- namespace app\common\model;
- use think\Model;
- /**
- * 模型
- */
- class GuildJoinin extends Model
- {
- // 开启自动写入时间戳字段
- protected $autoWriteTimestamp = 'int';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- public function user()
- {
- return $this->hasOne('User', 'id', 'user_id',[],'LEFT');
- }
- }
|