client.active.draw.log.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. }
  23. type DrawCancelInfoRequest struct {
  24. DrawLogId int64 `json:"draw_log_id"`
  25. Key string `json:"key"`
  26. }
  27. // 返回
  28. type DrawCancelInfoReply struct {
  29. ActiveConfigName string `json:"active_config_name"` //配置名称
  30. DrawProductName string `json:"draw_product_name"` //奖品名称
  31. DrawUrl string `json:"draw_url"` //图片URL
  32. DrawLogId int64 `json:"draw_log_id"` //抽奖id
  33. DrawTime string `json:"draw_time"` //中奖时间
  34. }