user.go 470 B

123456789101112131415161718192021
  1. package response
  2. import "eta/eta_mini_api/models"
  3. type WeChatLoginResp struct {
  4. Authorization string `description:"Token"`
  5. }
  6. type UserReadRecordResp struct {
  7. RecordId int
  8. }
  9. type AreaCodeListResp struct {
  10. Name string `description:"地区"`
  11. Value string `description:"区号"`
  12. }
  13. type UserInfoResp struct {
  14. User *models.UsersItem `description:"用户登录信息"`
  15. LoginStatus int `description:"登录状态:0-未登录;1-已登录"`
  16. }