diff --git a/op-modules/op-device/src/main/java/com/op/device/domain/EquOrderStandard.java b/op-modules/op-device/src/main/java/com/op/device/domain/EquOrderStandard.java
index 7cdaadde..1a64a8ce 100644
--- a/op-modules/op-device/src/main/java/com/op/device/domain/EquOrderStandard.java
+++ b/op-modules/op-device/src/main/java/com/op/device/domain/EquOrderStandard.java
@@ -88,6 +88,46 @@ public class EquOrderStandard extends BaseEntity {
private String errorFlag;
+ private String faultType;
+
+ private String repairReach;
+
+ private BigDecimal repairValue;
+
+ private String repairPicture;
+
+ public String getRepairPicture() {
+ return repairPicture;
+ }
+
+ public void setRepairPicture(String repairPicture) {
+ this.repairPicture = repairPicture;
+ }
+
+ public BigDecimal getRepairValue() {
+ return repairValue;
+ }
+
+ public void setRepairValue(BigDecimal repairValue) {
+ this.repairValue = repairValue;
+ }
+
+ public String getRepairReach() {
+ return repairReach;
+ }
+
+ public void setRepairReach(String repairReach) {
+ this.repairReach = repairReach;
+ }
+
+ public String getFaultType() {
+ return faultType;
+ }
+
+ public void setFaultType(String faultType) {
+ this.faultType = faultType;
+ }
+
public String getErrorFlag() {
return errorFlag;
}
diff --git a/op-modules/op-device/src/main/resources/mapper/device/EquOrderStandardMapper.xml b/op-modules/op-device/src/main/resources/mapper/device/EquOrderStandardMapper.xml
index d6fb3c57..8ef09295 100644
--- a/op-modules/op-device/src/main/resources/mapper/device/EquOrderStandardMapper.xml
+++ b/op-modules/op-device/src/main/resources/mapper/device/EquOrderStandardMapper.xml
@@ -28,10 +28,14 @@
+
+
+
+
- select id, code, parent_code, order_code, standard_type, standard_name, detail_up_limit, detail_down_limit, detail_unit, detail_reach, actual_value, detail_error, factory_code, attr1, attr2, attr3, del_flag, create_by, create_time, update_by, update_time,picture_path,error_flag from equ_order_standard
+ select id, code, parent_code, order_code, standard_type, standard_name, detail_up_limit, detail_down_limit, detail_unit, detail_reach, actual_value, detail_error, factory_code, attr1, attr2, attr3, del_flag, create_by, create_time, update_by, update_time,picture_path,error_flag,fault_type,repair_reach,repair_value,repair_picture from equ_order_standard
@@ -93,6 +101,10 @@
update_time,
picture_path,
error_flag,
+ fault_type,
+ repair_reach,
+ repair_value,
+ repair_picture,
#{id},
@@ -118,6 +130,10 @@
#{updateTime},
#{picturePath},
#{errorFlag},
+ #{faultType},
+ #{repairReach},
+ #{repairValue},
+ #{repairPicture},
@@ -162,6 +178,10 @@
update_time = #{updateTime},
picture_path = #{picturePath},
error_flag = #{errorFlag},
+ fault_type = #{faultType},
+ repair_reach = #{repairReach},
+ repair_value = #{repairValue},
+ repair_picture = #{repairPicture},
where id = #{id}