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