31 lines
1.0 KiB
Go
31 lines
1.0 KiB
Go
package dto
|
||
|
||
// 礼物盒
|
||
type UserGiftBoxDTO struct {
|
||
BoxId string
|
||
GiftId string
|
||
GiftName string
|
||
GiftImage string
|
||
GiftDiamond string
|
||
GiftAmountType string // 价格类型:DIAMOND=钻石 GOLD=N币
|
||
AnimationGifUrl string
|
||
AnimationApngUrl string
|
||
LimitTabId string
|
||
IsOrderGift string
|
||
StockQty string
|
||
TagIconExp string
|
||
TagIconFullServer string
|
||
ClickInterval int32 // 连击间隔的描述,0为不限制
|
||
}
|
||
|
||
type GiftSimpleDTO struct {
|
||
GiftId string `json:"GiftId,omitempty"` // 好评率
|
||
GiftName string `json:"GiftName,omitempty"` //
|
||
GiftCount string `json:"GiftCount,omitempty"` //
|
||
GiftStaticUrl string `json:"GiftStaticUrl,omitempty"` //
|
||
AnimationApngUrl string `json:"AnimationApngUrl,omitempty"` //
|
||
AnimationPcUrl string `json:"AnimationPcUrl,omitempty"` //
|
||
AnimationFormat string `json:"AnimationFormat,omitempty"` //
|
||
FillMode string `json:"FillMode,omitempty"` //
|
||
}
|