增加配置属性
This commit is contained in:
parent
00bd6af8d8
commit
1625099c3a
|
|
@ -6,10 +6,6 @@ import lombok.Data;
|
||||||
@Data
|
@Data
|
||||||
public class DevInfoPropertyVo {
|
public class DevInfoPropertyVo {
|
||||||
|
|
||||||
/** 物资ID */
|
|
||||||
@ApiModelProperty(value = "物资ID")
|
|
||||||
private Long maId;
|
|
||||||
|
|
||||||
/** 属性名称 */
|
/** 属性名称 */
|
||||||
@ApiModelProperty(value = "属性名称")
|
@ApiModelProperty(value = "属性名称")
|
||||||
private String propertyName;
|
private String propertyName;
|
||||||
|
|
|
||||||
|
|
@ -532,8 +532,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectDevInfoProperties" resultType="com.bonus.material.device.domain.vo.DevInfoPropertyVo">
|
<select id="selectDevInfoProperties" resultType="com.bonus.material.device.domain.vo.DevInfoPropertyVo">
|
||||||
select ma_id as maId,
|
select property_name as propertyName,
|
||||||
property_name as propertyName,
|
|
||||||
property_value as propertyValue
|
property_value as propertyValue
|
||||||
from ma_dev_info_properties
|
from ma_dev_info_properties
|
||||||
where ma_id = #{maId}
|
where ma_id = #{maId}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue