package response import "eta/eta_mini_api/models" type WeChatLoginResp struct { Authorization string `description:"Token"` } type UserReadRecordResp struct { RecordId int } type AreaCodeListResp struct { Name string `description:"地区"` Value string `description:"区号"` } type UserInfoResp struct { User *models.UsersItem `description:"用户登录信息"` LoginStatus int `description:"登录状态:0-未登录;1-已登录"` }