材料站增加检查报告
This commit is contained in:
parent
1ffe0cb288
commit
9f70189db7
|
|
@ -245,4 +245,10 @@ public class MaterialRetainedEquipmentInfo {
|
||||||
private String endTime;
|
private String endTime;
|
||||||
|
|
||||||
private String unitValue;
|
private String unitValue;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "报告编码")
|
||||||
|
private String reportCode;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "报告路径")
|
||||||
|
private String reportUrl;
|
||||||
}
|
}
|
||||||
|
|
@ -743,6 +743,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
mt.type_name AS typeModelName,
|
mt.type_name AS typeModelName,
|
||||||
sai.ma_id AS maId,
|
sai.ma_id AS maId,
|
||||||
mm.ma_code AS maCode,
|
mm.ma_code AS maCode,
|
||||||
|
mm.ex_code AS reportCode,
|
||||||
|
mm.ex_url AS reportUrl,
|
||||||
mm.this_check_time AS thisCheckTime,
|
mm.this_check_time AS thisCheckTime,
|
||||||
mm.next_check_time AS nextCheckTime,
|
mm.next_check_time AS nextCheckTime,
|
||||||
bp.imp_unit AS impUnit,
|
bp.imp_unit AS impUnit,
|
||||||
|
|
@ -807,7 +809,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
bp.pro_name like concat('%',#{keyWord},'%') or
|
bp.pro_name like concat('%',#{keyWord},'%') or
|
||||||
mt2.type_name like concat('%',#{keyWord},'%') or
|
mt2.type_name like concat('%',#{keyWord},'%') or
|
||||||
mt.type_name like concat('%',#{keyWord},'%') or
|
mt.type_name like concat('%',#{keyWord},'%') or
|
||||||
mm.ma_code like concat('%',#{keyWord},'%')
|
mm.ma_code like concat('%',#{keyWord},'%') or
|
||||||
|
mm.ex_code like concat('%',#{keyWord},'%')
|
||||||
)
|
)
|
||||||
</if>
|
</if>
|
||||||
) AS temp -- 子查询别名
|
) AS temp -- 子查询别名
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue