feat(app): update

This commit is contained in:
Yangtao
2025-11-19 14:24:13 +08:00
parent 1eac66d7fd
commit 0c34585649
329 changed files with 10760 additions and 281 deletions

30
pkg/dto/UserGiftBoxDTO.go Normal file
View File

@ -0,0 +1,30 @@
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"` //
}