新增用户列表接口定义

This commit is contained in:
2025-06-04 17:58:21 +08:00
parent 1db01717fe
commit 5bbdc7ec7c
3 changed files with 17 additions and 6 deletions

View File

@ -49,11 +49,6 @@ type UserUpdateIn struct {
Status int
}
// UserOut 用户响应
type UserOut struct {
*User
}
type LoginCache struct {
Token string `json:"token"`
Status int `json:"status" dc:"0-准备扫码1-已扫码"`
@ -77,3 +72,15 @@ type UserInfoOut struct {
type UserBindPhoneIn struct {
}
type UserListIn struct {
OperatorId int64
Role string
Nickname string
Page int
Size int
}
type UserListOut struct {
List []User
Total int
}