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

View File

@ -0,0 +1,19 @@
package response
import "gitea.ddegame.cn/open/servicebase/pkg/datasource/fields"
type ActivityRes struct {
ID int32 // 主键
ActName string // 活动名称
BriefDesc string // 活动介绍
BeginTime fields.Time // 活动开始时间
EndTime fields.Time // 活动结束时间
ViewBeginAt fields.Time // 什么时候开始可见
ViewEndAt fields.Time // 什么时候之后不可见
ActType string // 活动类型
ActPerPrice int32 // 活动单价
ActPriceType string // 价格类型 DIAMOND=钻石 POINT=积分
ActIcon string // 活动图标
ActImg string // 活动图片
ActScheme string // 活动链接
}