You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
451 B
18 lines
451 B
package model |
|
|
|
//PointExchangePrice . |
|
type PointExchangePrice struct { |
|
ID int64 `json:"id"` |
|
OriginPoint int32 `json:"originPoint"` |
|
CurrentPoint int32 `json:"currentPoint"` |
|
Month int16 `json:"month"` |
|
PromotionTip string `json:"promotionTip"` |
|
PromotionColor string `json:"promotionColor"` |
|
OperatorID string `json:"operatorId"` |
|
} |
|
|
|
// point consume status |
|
const ( |
|
PointConsumeSuc = 1 |
|
PointConsumeFaild = 1 |
|
)
|
|
|