Merge remote-tracking branch 'origin/master'

This commit is contained in:
chy
2025-06-05 10:12:30 +08:00
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
}