Files
36Wisdom/biz/model/entity/entity_badge.go
T
2026-08-13 11:58:27 +08:00

12 lines
358 B
Go

package entity
// Badge 徽章定义与解锁条件。
type Badge struct {
Id int64 `json:"id" orm:"id"`
Name string `json:"name" orm:"name"`
Icon string `json:"icon" orm:"icon"`
CondType int `json:"cond_type" orm:"cond_type"`
CondValue int `json:"cond_value" orm:"cond_value"`
Status int `json:"status" orm:"status"`
}