17 lines
552 B
Go
17 lines
552 B
Go
package backend
|
|
|
|
type UserListRequest struct {
|
|
Page int `json:"page" validate:"required"`
|
|
Limit int `json:"limit" validate:"required"`
|
|
Mobile string `json:"mobile"`
|
|
}
|
|
|
|
type UserListResponse struct {
|
|
Id int `xorm:"'Id' int(11)"`
|
|
Clientuniqueidentification string `xorm:"'ClientUniqueIdentification' varchar(255)"`
|
|
Mobile string `xorm:"'Mobile' varchar(13)"`
|
|
Status int `xorm:"'Status' TINYINT"`
|
|
Aer string
|
|
Createtime string
|
|
}
|