蛋蛋星球-客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
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. }