更新初级版本
This commit is contained in:
@@ -20,7 +20,7 @@ use app\common\enum\user\UserEnum;
|
||||
use app\common\model\BaseModel;
|
||||
use app\common\service\FileService;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
use app\common\model\DiagnosisViewRecord;
|
||||
/**
|
||||
* 用户模型
|
||||
* Class User
|
||||
@@ -172,5 +172,16 @@ class User extends BaseModel
|
||||
return $sn;
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 关联患者表
|
||||
* @return \think\model\relation\HasOne
|
||||
* @author 段誉
|
||||
* @date 2022/9/22 16:03
|
||||
*/
|
||||
public function diagnosis()
|
||||
{
|
||||
return $this->belongsTo(DiagnosisViewRecord::class, 'id', 'user_id');
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user