This commit is contained in:
laodaming
2023-07-21 17:20:46 +08:00
parent 53a4df065c
commit 133af63064
3 changed files with 28 additions and 16 deletions

View File

@@ -360,8 +360,12 @@ type GetPriceByPidRsp {
StepPrice []StepPrice `json:"step_price"`
}
type StepPrice {
Range string `json:"range"`
Price float64 `json:"price"`
RangeNum RangeNum `json:"range_num"`
Price float64 `json:"price"`
}
type RangeNum {
Begin int64 `json:"begin"`
End int64 `json:"end"`
}
type PriceItem {
Num int64 `json:"num"`