Destoon · 2024年03月10号 0

Destoon 报价quote 模块改造之sql数字字段类型

_quote_price_7表:

price字段;由之前的decimal 10,2,修改为:bigint 15。

_quote_product_7 表:

price decimal (10,2)
minprice decimal (10,2)
maxprice decimal (10,2)

修改为:

price bigint(15)
minprice bigint(15)
maxprice bigint(15)

 

含义:数字小数点后两位,修改为整数。