+ user2/GetUsers

This commit is contained in:
gazebo
2019-08-05 09:38:48 +08:00
parent be9f2408f4
commit 73169746c9
7 changed files with 72 additions and 7 deletions

View File

@@ -152,3 +152,7 @@ func OnDingDingMsg(msg map[string]interface{}) (callbackResponse *dingdingapi.Ca
}
return api.DingDingAPI.Err2CallbackResponse(nil)
}
func GetUsers(ctx *jxcontext.Context, userType int, userID2, mobile, userName string) (userList []*model.User, err error) {
return dao.GetUsers(dao.GetDB(), userType, userID2, mobile, userName)
}