18 lines
441 B
Go
18 lines
441 B
Go
package step_price
|
|
|
|
// 旧的返回厘(即将废弃)
|
|
func GetCentStepPrice(minBuyNum int, stepNum []int, stepPrice []int) int64 {
|
|
if minBuyNum > stepNum[len(stepNum)-1] {
|
|
return int64(stepPrice[len(stepPrice)-1])
|
|
}
|
|
for k, v := range stepNum {
|
|
if minBuyNum <= v {
|
|
if k <= (len(stepPrice) - 1) {
|
|
return int64(stepPrice[k])
|
|
}
|
|
return int64(stepPrice[len(stepPrice)-1])
|
|
}
|
|
}
|
|
return int64(stepPrice[len(stepPrice)-1])
|
|
}
|