client.active.draw.log.go 736 B

123456789101112131415161718192021222324252627
  1. package models
  2. type ClientDrawLogRequest struct {
  3. ClientOpenID string `json:"client_open_id"` //
  4. PageSize int `json:"page_size"`
  5. PageIndex int `json:"page_index"`
  6. }
  7. type ClientDrawLogReply struct {
  8. DrawProductName string `json:"draw_product_name"` //奖品名称
  9. IsPrize int `json:"is_prize"` //1-未中奖 2-未兑奖 3-已兑奖
  10. Id int64 `json:"id"` //id
  11. }
  12. type DrawLogVerificationCodeRequest struct {
  13. DrawLogId int64 `json:"draw_log_id"`
  14. }
  15. type DrawLogVerificationCodeReply struct {
  16. DrawLogId int64 `json:"draw_log_id"`
  17. Key string `json:"key"`
  18. }
  19. type DrawCancelRequest struct {
  20. DrawLogId int64 `json:"draw_log_id"`
  21. Key string `json:"key"`
  22. }