问题修复
This commit is contained in:
parent
1a354c7b97
commit
1743a4e54e
|
|
@ -110,4 +110,7 @@ public class StandardConfigDetailsVo {
|
||||||
@ApiModelProperty(value = "层级")
|
@ApiModelProperty(value = "层级")
|
||||||
private String level;
|
private String level;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "是否整数")
|
||||||
|
private Integer unitValue;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -134,6 +134,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
a.typeName,
|
a.typeName,
|
||||||
a.typeModelName,
|
a.typeModelName,
|
||||||
a.unit,
|
a.unit,
|
||||||
|
a.unitValue,
|
||||||
bscd.num,
|
bscd.num,
|
||||||
bscd.remark
|
bscd.remark
|
||||||
FROM
|
FROM
|
||||||
|
|
@ -147,7 +148,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
mt3.type_name AS materialType,
|
mt3.type_name AS materialType,
|
||||||
mt2.type_name AS typeName,
|
mt2.type_name AS typeName,
|
||||||
mt.type_name AS typeModelName,
|
mt.type_name AS typeModelName,
|
||||||
mt.unit_name AS unit
|
mt.unit_name AS unit,
|
||||||
|
mt.unit_value AS unitValue
|
||||||
FROM
|
FROM
|
||||||
ma_type mt
|
ma_type mt
|
||||||
LEFT JOIN
|
LEFT JOIN
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue