Files
geekai/api/store/vo/reward_rule.go
2025-08-06 09:57:14 +08:00

11 lines
317 B
Go

package vo
type RewardRule struct {
Id int `json:"id"` // 规则ID
Title string `json:"title"` // 规则标题
Desc string `json:"desc"` // 规则描述
Icon string `json:"icon"` // 图标类名
Color string `json:"color"` // 图标颜色
Reward int `json:"reward"` // 奖励算力
}