client.active.draw.num.go 458 B

12345678910111213141516
  1. package models
  2. type InvitedDrawNumRequest struct {
  3. OpenId string `json:"open_id"` //被邀请人
  4. InvitedCode string `json:"invited_code"` //邀请码
  5. ActiveConfigId int64 `json:"active_config_id"` //活动id
  6. }
  7. type ActiveDrawCountRequest struct {
  8. OpenId string `json:"open_id"` //open-id
  9. ActiveConfigId int64 `json:"active_config_id"` //活动id
  10. }
  11. type ActiveDrawCountReply struct {
  12. Num int `json:"num"`
  13. }