12 lines
358 B
Go
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"`
|
|
}
|