蛋蛋星球 后台端
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.
 
 
 
 

224 lines
9.7 KiB

  1. package md
  2. import (
  3. "code.fnuoos.com/EggPlanet/egg_models.git/src/model"
  4. )
  5. type RegisterReq struct {
  6. Mobile string `json:"mobile" binding:"required"`
  7. Type string `json:"type" example:"app:APP注册、h5:H5注册 admin 后台"`
  8. ParentUid string `json:"parent_uid" example:"上级用户"`
  9. Password string `json:"password" example:"密码 如 123"`
  10. Nickname string `json:"nickname"`
  11. Avatar string `json:"avatar"`
  12. }
  13. type InviteCodeReq struct {
  14. Id string `json:"id"`
  15. CustomInviteCode string `json:"custom_invite_code"`
  16. }
  17. type UserReq struct {
  18. Id string `json:"id"`
  19. }
  20. type UserManagementGetUserListReq struct {
  21. ID int64 `json:"id"` // 会员 ID
  22. Nickname string `json:"nickname" example:"会员昵称"`
  23. RecommendID int64 `json:"recommend_id"` // 推荐人 ID
  24. Tag int `json:"tag"` // 标签 id
  25. Phone string `json:"phone" example:"会员手机号"`
  26. InviteCode string `json:"invite_code" example:"会员邀请码"`
  27. ParentInviteCode string `json:"parent_invite_code" example:"上级邀请码"`
  28. ParentPhone string `json:"parent_phone" example:"上级手机号"`
  29. Sex int `json:"sex"` // 性别(0:未知 1:男 2:女)
  30. UnionId string `json:"union_id" example:"微信号"`
  31. Level int `json:"level"` // 会员等级
  32. RegisterType int `json:"register_type"` // 注册类型(1:APP注册、2:H5注册)
  33. State int `json:"state"` // 状态
  34. Effective int `json:"effective"` // 有效会员
  35. IsRealName int `json:"is_real_name"` // 是否实名 0.未实名,1.已实名
  36. Memo string `json:"memo"` // 备注
  37. RegisterBefore string `json:"register_before"` // 注册时间起点
  38. RegisterAfter string `json:"register_after"` // 注册时间终点
  39. LoginBefore string `json:"login_before"` // 最近登录开始时间
  40. LoginAfter string `json:"login_after"` // 最近登录结束时间
  41. Page int `json:"page,required"`
  42. Limit int `json:"limit,required"`
  43. IsRecycle string `json:"is_recycle"`
  44. }
  45. type Paginate struct {
  46. Limit int `json:"limit"` // 每页大小
  47. Page int `json:"page"` // 页数
  48. Total int64 `json:"total"` // 总数据量
  49. }
  50. type UserManagementGetUserListNode struct {
  51. ID int64 `json:"id"` // 会员 ID
  52. Tag []TagNode `json:"tag"` // 会员标签
  53. Sex int `json:"sex"` // 性别(0:未知 1:男 2:女)
  54. Avatar string `json:"avatar"` // 头像
  55. Nickname string `json:"nickname"` // 昵称
  56. Phone string `json:"phone"` // 手机号
  57. IsRealName int `json:"is_real_name"` // 是否实名 0.未实名,1.已实名
  58. LevelName string `json:"level_name"` // 会员等级
  59. InviteCode string `json:"invite_code" example:"会员邀请码"`
  60. CustomInviteCode string `json:"custom_invite_code"`
  61. ParentID int64 `json:"parent_id"` // 推荐人 ID
  62. ParentInviteCode string `json:"parent_invite_code" example:"推荐人邀请码"`
  63. ParentPhone string `json:"parent_phone" example:"推荐人手机号"`
  64. RegisterTime string `json:"register_time"` // 注册时间
  65. Memo string `json:"memo"` // 备注
  66. Wechat string `json:"wechat"` // 微信号
  67. RegisterType int `json:"register_type"` // 注册类型
  68. State int `json:"state"` // 状态
  69. LastLoginAt string `json:"last_login_at"` // 最后登录时间
  70. }
  71. type UserManagementGetUserListResp struct {
  72. LevelsList []map[string]interface{} `json:"levels_list"` // 等级列表
  73. TagsList []map[string]interface{} `json:"tags_list"` // 标签列表
  74. StateList []map[string]interface{} `json:"state_list"` // 状态列表
  75. List []UserManagementGetUserListNode `json:"list"`
  76. Paginate Paginate `json:"paginate"` // 分页信息
  77. }
  78. type UserInfo struct {
  79. model.User `xorm:"extends"`
  80. ParentPhone string `xorm:"parent_phone"`
  81. ParentSystemInviteCode string `xorm:"parent_system_invite_code"`
  82. ParentCustomInviteCode string `xorm:"parent_custom_invite_code"`
  83. }
  84. type LevelCount struct {
  85. Level int `xorm:"level"`
  86. Count int `xorm:"count"`
  87. }
  88. type UserManagementUpdateUserInfoReq struct {
  89. UID int64 `json:"uid,required"`
  90. Avatar string `json:"avatar"` // 头像
  91. Sex string `json:"sex"` // 性别(0:未知 1:男 2:女)
  92. Level string `json:"level"` // 会员等级 ID
  93. Tag string `json:"tag"` // 用户标签 ID列表
  94. Phone string `json:"phone"` // 手机号
  95. Nickname string `json:"nickname"` // 用户名
  96. UnionId string `json:"union_id"` // 微信号
  97. Memo string `json:"memo" example:"备注"`
  98. State string `json:"state"` // 账号状态 1正常,2冻结
  99. LastLoginIp string `json:"last_login_ip"` // 用户最后登录 IP
  100. ParentUid string `json:"parent_uid"` // 邀请人 ID
  101. Password string `json:"password"` // 登录密码
  102. WechatAccount string `json:"wechat_account"`
  103. }
  104. type UserManagementUserInfoReq struct {
  105. UID string `json:"uid" example:"多个逗号隔开"`
  106. ParentUid string `json:"parent_uid" example:"参考下智莺 保留关系时候的选择用户"`
  107. }
  108. type UserManagementUserInfoCancelReq struct {
  109. UID string `json:"uid" example:"多个逗号隔开"`
  110. }
  111. type TagNode struct {
  112. TagID int `json:"tag_id"` // 标签 ID
  113. TagName string `json:"tag_name"` // 标签名称
  114. }
  115. type BasicInfoNode struct {
  116. Avatar string `json:"avatar"` // 头像
  117. AvatarUrl string `json:"avatar_url"` // 头像
  118. Sex int `json:"sex"` // 性别
  119. Nickname string `json:"nickname"` // 用户名称
  120. LevelName string `json:"level_name"` // 会员等级名称
  121. LevelId int `json:"levelId"` // 会员等级 ID
  122. Tag []TagNode `json:"tag"` // 标签名称
  123. Phone string `json:"phone"` // 手机号
  124. UnionId string `json:"union_id"` // 微信号
  125. Password string `json:"password"` // 登录密码
  126. State int `json:"state"` // 账号状态 1正常,2冻结
  127. Memo string `json:"memo"` // 备注
  128. ParentUid int64 `json:"parent_uid"` // 推荐人
  129. ParentName string `json:"parent_name"` // 推荐人名称
  130. ParentPhone string `json:"parent_phone"` // 推荐人手机号
  131. WechatAccount string `json:"wechat_account"`
  132. SystemInviteCode string `json:"system_invite_code"`
  133. CustomInviteCode string `json:"custom_invite_code"`
  134. AlipayUserName string `json:"alipay_user_name"`
  135. AlipayOpenId string `json:"alipay_open_id"`
  136. WechatUserName string `json:"wechat_user_name"`
  137. WechatOpenId string `json:"wechat_open_id"`
  138. }
  139. type OtherNode struct {
  140. LastLoginIp string `json:"last_login_ip" ` // 最后登录 IP
  141. LastLoginAt string `json:"last_login_at" ` // 最近登录时间
  142. CreateAt string `json:"create_at" ` // 注册时间
  143. }
  144. type WalletNode struct {
  145. Amount string `json:"amount"` // 用户余额
  146. }
  147. type VirtualAmountInfoNode struct {
  148. CoinName string `json:"coin_name"` // 货币类型
  149. Amount string `json:"amount"` // 余额
  150. }
  151. type UserManagementGetOneBasicResp struct {
  152. TagsList []map[string]interface{} `json:"tags_list"` // 标签列表
  153. LevelsList []map[string]interface{} `json:"levels_list"` // 等级列表
  154. BasicInfo BasicInfoNode `json:"basic_info"` // 基本信息
  155. OtherInfo OtherNode `json:"other_info"` // 其他信息
  156. }
  157. type FansNode struct {
  158. ID int64 `json:"id"` // 用户ID
  159. Nickname string `json:"nickname" example:"用户昵称"`
  160. Phone string `json:"phone" example:"手机号"`
  161. LevelTotal int `json:"level_total"` // 所属代数
  162. Amount string `json:"amount"` // 可提现余额
  163. TotalIncome string `json:"total_income"` // 累计收益
  164. RegisterAt string `json:"register_at"` // 注册时间
  165. }
  166. type UserManagementGetFansResp struct {
  167. List []FansNode `json:"list"` // 用户数据
  168. Paginate Paginate `json:"paginate"` // 分页信息
  169. }
  170. type BalanceDetailNode struct {
  171. ID int64 `json:"id"` // 记录ID
  172. Amount string `json:"amount"` // 变更数量
  173. BeforeAmount string `json:"before_amount"` // 变更前余额
  174. AfterAmount string `json:"after_amount"` // 变更后余额
  175. Kind string `json:"kind"` //类型 1:管理员操作增加余额 2:管理员操作扣除余额 3:蛋蛋能量兑换余额 4:余额兑换蛋蛋能量
  176. CreateAt string `json:"create_at"` // 创建时间
  177. }
  178. type UserManagementGetBalanceDetailResp struct {
  179. List []BalanceDetailNode `json:"list"`
  180. Paginate Paginate `json:"paginate"`
  181. }
  182. type VirtualCoinDetailNode struct {
  183. Uid int64 `json:"uid"` // 用户 ID
  184. Amount string `json:"amount"` // 变更数量
  185. AfterAmount string `json:"after_amount"` // 变更后积分余额
  186. Direction int `json:"direction"` // 类型 1.收入 2.支出
  187. CreateAt string `json:"create_at"` // 创建时间
  188. }
  189. type UserManagementGetVirtualCoinDetailResp struct {
  190. CoinList []map[string]interface{} `json:"coin_list"`
  191. List []VirtualCoinDetailNode `json:"list"`
  192. Paginate Paginate `json:"paginate"`
  193. }
  194. type UserManagementAddTagReq struct {
  195. Uid int64 `json:"uid"` // 用户 ID
  196. TagId string `json:"tag_id"` // 标签 ID
  197. Memo string `json:"memo"` // 标签备注
  198. }
  199. type UserManagementDelTagReq struct {
  200. Uid int64 `json:"uid"` // 用户 ID
  201. TagId string `json:"tag_id"` // 标签 ID
  202. }