This commit is contained in:
2024-08-23 13:15:28 +08:00
parent a3d49f8b91
commit 3f2dae8364
3 changed files with 13 additions and 1 deletions
+5
View File
@@ -926,3 +926,8 @@ func (r *UserService) PutUser(userId int64, req requests.PutUser) (bool, error)
tx.Commit()
return true, nil
}
// CheckUserInfo 检测用户信息是否补全
func (r *UserService) CheckUserInfo(userId int64) bool {
return false
}