| package modelstype InvitedDrawNumRequest struct {	OpenId         string `json:"open_id"`          	InvitedCode    string `json:"invited_code"`     	ActiveConfigId int64  `json:"active_config_id"` }type ActiveDrawCountRequest struct {	OpenId         string `json:"open_id"`          	ActiveConfigId int64  `json:"active_config_id"` }type ActiveDrawCountReply struct {	Num int `json:"num"`}
 |