TaoLer/app/common/model/UserSignrule.php
2020-03-29 19:57:18 +08:00

24 lines
450 B
PHP

<?php
namespace app\common\model;
use think\Model;
use think\model\concern\SoftDelete;
class UserSignrule extends Model
{
protected $autoWriteTimestamp = true; //开启自动时间戳
protected $createTime = 'create_time';
//软删除
use SoftDelete;
protected $deleteTime = 'delete_time';
protected $defaultSoftDelete = 0;
public function user()
{
//评论关联用户
return $this->belongsTo('User','user_id','id');
}
}