package query
//ListAdminUserQuery 获取用户列表
type ListAdminUserQuery struct {
//账号匹配
AdminAccountMatch string `json:"admin_account_match" form:"account_match"`
// 查询偏离量
Offset int `json:"offset" form:"offset"`
// 查询限制
Limit int `json:"limit" form:"limit"`
}