- package models
 
- type InvitedDrawNumRequest struct {
 
- 	OpenId         string `json:"open_id"`          //被邀请人
 
- 	InvitedCode    string `json:"invited_code"`     //邀请码
 
- 	ActiveConfigId int64  `json:"active_config_id"` //活动id
 
- }
 
- type ActiveDrawCountRequest struct {
 
- 	OpenId         string `json:"open_id"`          //open-id
 
- 	ActiveConfigId int64  `json:"active_config_id"` //活动id
 
- }
 
- type ActiveDrawCountReply struct {
 
- 	Num int `json:"num"`
 
- }
 
 
  |