refactor(domain): 将检验结果值数据类型从BigDecimal改为String
- 修改WmsInspectionDetail实体类中的itemValue字段类型为String - 修改WmsInspectionDetailBo业务对象中的itemValue字段类型为String - 修改WmsInspectionDetailVo视图对象中的itemValue字段类型为String
This commit is contained in:
@@ -36,7 +36,7 @@ public class WmsInspectionDetail extends BaseEntity {
|
|||||||
/**
|
/**
|
||||||
* 检验结果值
|
* 检验结果值
|
||||||
*/
|
*/
|
||||||
private BigDecimal itemValue;
|
private String itemValue;
|
||||||
/**
|
/**
|
||||||
* 单位(如%、mgKOH/g、us/cm等)
|
* 单位(如%、mgKOH/g、us/cm等)
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ public class WmsInspectionDetailBo extends BaseEntity {
|
|||||||
/**
|
/**
|
||||||
* 检验结果值
|
* 检验结果值
|
||||||
*/
|
*/
|
||||||
private BigDecimal itemValue;
|
private String itemValue;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 单位(如%、mgKOH/g、us/cm等)
|
* 单位(如%、mgKOH/g、us/cm等)
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ public class WmsInspectionDetailVo {
|
|||||||
* 检验结果值
|
* 检验结果值
|
||||||
*/
|
*/
|
||||||
@ExcelProperty(value = "检验结果值")
|
@ExcelProperty(value = "检验结果值")
|
||||||
private BigDecimal itemValue;
|
private String itemValue;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 单位(如%、mgKOH/g、us/cm等)
|
* 单位(如%、mgKOH/g、us/cm等)
|
||||||
|
|||||||
Reference in New Issue
Block a user