Merge branch 'develop' of gitee.com:fusenpack/fusenapi into develop

This commit is contained in:
Hiven
2023-07-21 18:17:43 +08:00
4 changed files with 52 additions and 41 deletions

View File

@@ -357,10 +357,11 @@ type GetPriceByPidRsp {
Items []PriceItem `json:"items"`
MinPrice float64 `json:"min_price"`
MaxPrice float64 `json:"max_price"`
StepPrice []StepPrice `json:"step_price"`
StepRange []StepRange `json:"step_range"`
}
type StepPrice {
Range string `json:"range"`
type StepRange {
Begin int64 `json:"begin"`
End int64 `json:"end"`
Price float64 `json:"price"`
}
type PriceItem {