| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace app\admin\model;
- use app\common\model\BaseModel;
- class OperationLog extends BaseModel
- {
- /**
- * @var string
- */
- protected $name = 'system_operate_log';
- /**
- * @var array
- */
- protected $auto = [];
- /**
- * @var array
- */
- protected $insert = ['created_at','updated_at'];
- /**
- * @var array
- */
- protected $update = ['updated_at'];
- /**
- * 关联用户
- *
- * @author 许祖兴 < zuxing.xu@lettered.cn>
- * @date 2020/3/18 10:44
- *
- * @return \think\model\relation\BelongsTo
- */
- public function user()
- {
- return $this->belongsTo('Users','user_id','id');
- }
- }
|