15 lines
560 B
Go
15 lines
560 B
Go
package entity
|
|
|
|
// Prize 奖品:积分价格、库存、类型(虚拟/实物)。
|
|
type Prize struct {
|
|
Id int64 `json:"id" orm:"id"`
|
|
Name string `json:"name" orm:"name"`
|
|
Description string `json:"description" orm:"description"`
|
|
Icon string `json:"icon" orm:"icon"`
|
|
PType int `json:"p_type" orm:"p_type"`
|
|
PointsCost int `json:"points_cost" orm:"points_cost"`
|
|
Stock int `json:"stock" orm:"stock"`
|
|
Status int `json:"status" orm:"status"`
|
|
SortOrder int `json:"sort_order" orm:"sort_order"`
|
|
}
|