mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 23:58:04 -05:00
19 lines
451 B
Go
19 lines
451 B
Go
|
|
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
|
||
|
|
)
|