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

20 lines
719 B
Go

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 // 活动链接
}