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.
17 lines
374 B
17 lines
374 B
package model |
|
|
|
//AddFreeGift AddFreeGift |
|
type AddFreeGift struct { |
|
UID int64 `json:"uid"` |
|
GiftID int64 `json:"gift_id"` |
|
GiftNum int64 `json:"gift_num"` |
|
ExpireAt int64 `json:"expire_at"` |
|
Source string `json:"source"` |
|
MsgID string `json:"msg_id"` |
|
} |
|
|
|
// BagInfo BagInfo |
|
type BagInfo struct { |
|
ID int64 `json:"id"` |
|
GiftNum int64 `json:"gift_num"` |
|
}
|
|
|