feat(app): update
This commit is contained in:
30
pkg/dto/UserGiftBoxDTO.go
Normal file
30
pkg/dto/UserGiftBoxDTO.go
Normal 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"` //
|
||||
}
|
||||
Reference in New Issue
Block a user