shane лет назад: 3
Родитель
Сommit
bab15b2550

+ 9 - 0
java110-bean/src/main/java/com/java110/dto/inspectionPlan/InspectionPlanDto.java

@@ -52,6 +52,7 @@ public class InspectionPlanDto extends PageDto implements Serializable {
     private String startDate;
     private String endDate;
     private String beforeTime;
+    private String canReexamine;
 
 
     public String getInspectionPlanName() {
@@ -279,4 +280,12 @@ public class InspectionPlanDto extends PageDto implements Serializable {
     public void setBeforeTime(String beforeTime) {
         this.beforeTime = beforeTime;
     }
+
+    public String getCanReexamine() {
+        return canReexamine;
+    }
+
+    public void setCanReexamine(String canReexamine) {
+        this.canReexamine = canReexamine;
+    }
 }

+ 9 - 1
java110-bean/src/main/java/com/java110/po/inspection/InspectionPlanPo.java

@@ -31,7 +31,7 @@ public class InspectionPlanPo implements Serializable {
     private String inspectionDay;
     private String inspectionWorkday;
     private String beforeTime;
-
+    private String canReexamine;
 
 
     public String getInspectionPlanId() {
@@ -185,4 +185,12 @@ public class InspectionPlanPo implements Serializable {
     public void setBeforeTime(String beforeTime) {
         this.beforeTime = beforeTime;
     }
+
+    public String getCanReexamine() {
+        return canReexamine;
+    }
+
+    public void setCanReexamine(String canReexamine) {
+        this.canReexamine = canReexamine;
+    }
 }

+ 10 - 0
java110-db/src/main/resources/mapper/community/InspectionPlanServiceDaoImplMapper.xml

@@ -159,6 +159,7 @@
         t.inspection_plan_id inspectionPlanId,
         t.state,
         t.community_id communityId,
+        t.can_reexamine canReexamine,
         t.b_id bId,
         t.create_time createTime,
         d.name stateName,
@@ -191,6 +192,9 @@
         <if test="signType !=null and signType != ''">
             and t.sign_type= #{signType}
         </if>
+        <if test="canReexamine !=null and canReexamine != ''">
+            and t.can_reexamine= #{canReexamine}
+        </if>
         <if test="startTime !=null ">
             and t.start_time= #{startTime}
         </if>
@@ -245,6 +249,9 @@
         <if test="signType !=null and signType != ''">
             , t.sign_type= #{signType}
         </if>
+        <if test="canReexamine !=null and canReexamine != ''">
+            , t.can_reexamine= #{canReexamine}
+        </if>
         <if test="startTime !=null">
             , t.start_time= #{startTime}
         </if>
@@ -290,6 +297,9 @@
         <if test="signType !=null and signType != ''">
             and t.sign_type= #{signType}
         </if>
+        <if test="canReexamine !=null and canReexamine != ''">
+            and t.can_reexamine= #{canReexamine}
+        </if>
         <if test="startTime !=null and startTime != ''">
             and t.start_time= #{startTime}
         </if>