| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | package modelstype ClientDrawLogRequest struct {	ClientOpenID string `json:"client_open_id"` 	PageSize     int    `json:"page_size"`	PageIndex    int    `json:"page_index"`}type ClientDrawLogReply struct {	DrawProductName string `json:"draw_product_name"` 	IsPrize         int    `json:"is_prize"`          	Url             string `json:"url"`               	Id              int64  `json:"id"`                	DrawTime        string `json:"draw_time"`         	ActiveId        int64  `json:"active_id"`         }type DrawLogVerificationCodeRequest struct {	DrawLogId int64  `json:"draw_log_id"`	OpenId    string `json:"open_id"`}type DrawLogVerificationCodeReply struct {	DrawLogId int64  `json:"draw_log_id"`	Key       string `json:"key"`}type DrawCancelRequest struct {	DrawLogId int64  `json:"draw_log_id"`	Key       string `json:"key"`}type DrawCancelInfoRequest struct {	DrawLogId int64  `json:"draw_log_id"`	Key       string `json:"key"`}type DrawCancelInfoReply struct {	ActiveConfigName string `json:"active_config_name"` 	DrawProductName  string `json:"draw_product_name"`  	DrawUrl          string `json:"draw_url"`           	DrawLogId        int64  `json:"draw_log_id"`        	DrawTime         string `json:"draw_time"`          }
 |