@@ -259,6 +259,10 @@ func GetErmcpGoodses(userid int64, lastUpdateTime string, loginID int64) ([]Ermc
for i := range goodses {
goodses[i].ENUMDICNAME = mtpcache.GetEnumDicitemName(int32(goodses[i].Goodunitid))
+ // 行情最小变动单位不能为0
+ if goodses[i].Quoteminunit == 0 {
+ goodses[i].Quoteminunit = 1
+ }
}
return goodses, nil