智莺生活mysql模型库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

54 lines
1.9 KiB

  1. package md
  2. type BuyPackageRecordsRequest struct {
  3. Page int `json:"page"`
  4. Limit int `json:"limit"`
  5. }
  6. type BuyPackageRecordsResponse struct {
  7. Id int `json:"id"`
  8. OrdNo string `json:"ord_no"`
  9. TradeNo string `json:"trade_no"`
  10. PackageId int `json:"package_id"`
  11. Uid int `json:"uid"`
  12. Amount string `json:"amount"`
  13. State int `json:"state"`
  14. PayChannel int `json:"pay_channel"`
  15. Months int `json:"months"`
  16. PackageName string `json:"package_name"`
  17. CreateAt string `json:"create_at" `
  18. UpdateAt string `json:"update_at" `
  19. }
  20. type ActivityGroupListRequest struct {
  21. Page int `json:"page"`
  22. Limit int `json:"limit"`
  23. }
  24. type AddActivityGroupRequest struct {
  25. Name string `json:"name"`
  26. ChatRoomId string `json:"chat_room_id"`
  27. ChatRoomOwnerWxNickname string `json:"chat_room_owner_wx_nickname"`
  28. ChatRoomOwnerWxHeadUrl string `json:"chat_room_owner_wx_head_url"`
  29. ChatRoomOwner string `json:"chat_room_owner"`
  30. MemberCount int `json:"member_count"`
  31. BigHeadImgUrl string `json:"big_head_img_url"`
  32. SmallHeadImgUrl string `json:"small_head_img_url"`
  33. }
  34. type SourceGroupListRequest struct {
  35. Page int `json:"page"`
  36. Limit int `json:"limit"`
  37. }
  38. type PreviewSourceRequest struct {
  39. ActivateGroupId int `json:"activate_group_id"`
  40. Page int `json:"page"`
  41. Limit int `json:"limit"`
  42. }
  43. type JoinSourceGroupRequest struct {
  44. FollowActivateGroupId int `json:"follow_activate_group_id"`
  45. Name string `json:"name"`
  46. FollowChatRoomId string `json:"follow_chat_room_id"`
  47. FollowChatRoomOwner string `json:"follow_chat_room_owner"`
  48. FollowChatMemberCount int `json:"follow_chat_member_count"`
  49. FollowBigHeadImgUrl string `json:"follow_big_head_img_url"`
  50. FollowSmallHeadImgUrl string `json:"follow_small_head_img_url"`
  51. JoinActivateGroupIds []int `json:"activate_group_id"`
  52. }