蛋蛋星球-客户端
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

13 linhas
570 B

  1. package md
  2. type RedPacketInfoResp struct {
  3. Uid int64 `json:"uid"` // 用户 ID
  4. TotalAmount string `json:"total_amount"` // 金额
  5. Days int `json:"days"` // 天数
  6. BalanceAmount string `json:"balance_amount"` // 剩余金额
  7. BalanceDays int `json:"balance_days"` // 剩余天数
  8. ReceiveDays int `json:"receive_days"` // 领取天数
  9. State int `json:"state"` // 状态(0:待领取 1:领取中 2:已领取 3:已冻结)
  10. CreateAt string `json:"create_at"` // 创建时间
  11. }