Files
servicebase/pkg/dto/UserGiftBoxDTO.go
2025-11-19 14:24:13 +08:00

31 lines
1.0 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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"` //
}