2024-10-09 设备-安环-点检、巡检、保养三个报表

master
元气满满(jgy) 5 months ago
parent a7b2989873
commit d76e261b1c

@ -292,7 +292,10 @@ public class EquOrder extends BaseEntity {
//合格率
private String complianceRate;
public String getPicturePath() {
//设备类型编码 安环三个报表要用
private String equipmentTypeCode;
public String getPicturePath() {
return picturePath;
}
@ -829,11 +832,15 @@ public class EquOrder extends BaseEntity {
}
public String getComplianceRate() { return complianceRate; }
public void setComplianceRate(String complianceRate) {
this.complianceRate = complianceRate;
}
public String getEquipmentTypeCode() { return equipmentTypeCode; }
public void setEquipmentTypeCode(String equipmentTypeCode) {
this.equipmentTypeCode = equipmentTypeCode;
}
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)

@ -152,6 +152,7 @@
<if test="orderEndArrayStart != null ">and CONVERT(date,eo.order_end) >= #{orderEndArrayStart}</if>
<if test="orderEndArrayEnd != null ">and #{orderEndArrayEnd} >= CONVERT(date,eo.order_end)</if>
<if test="planName != null and planName != ''">and ep.plan_name like concat('%', #{planName}, '%')</if>
<if test="equipmentTypeCode != null and equipmentTypeCode != ''">and be.equipment_type_code like concat('%',#{equipmentTypeCode}, '%')</if>
and eo.del_flag = '0' and be.del_flag = '0' and ep.del_flag = '0'
</where>
order by eo.create_time desc

Loading…
Cancel
Save