From 3670dff70c8454127a1a6dc28b5c94770e053471 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 08 十一月 2022 15:58:17 +0800
Subject: [PATCH] 加入保养任务

---
 java110-bean/src/main/java/com/java110/po/inspection/InspectionPlanPo.java |   64 ++++++++++++++++++++++++++++++++
 1 files changed, 64 insertions(+), 0 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/po/inspection/InspectionPlanPo.java b/java110-bean/src/main/java/com/java110/po/inspection/InspectionPlanPo.java
index 842ab8e..9d62cd5 100755
--- a/java110-bean/src/main/java/com/java110/po/inspection/InspectionPlanPo.java
+++ b/java110-bean/src/main/java/com/java110/po/inspection/InspectionPlanPo.java
@@ -18,6 +18,8 @@
     private String communityId;
     private String startTime;
     private String endTime;
+    private String startDate;
+    private String endDate;
     private String inspectionPlanPeriod;
     private String signType;
     private String state;
@@ -25,6 +27,12 @@
     private String createUserId;
     private String createUserName;
     private String statusCd ="0";
+    private String inspectionMonth;
+    private String inspectionDay;
+    private String inspectionWorkday;
+    private String beforeTime;
+    private String canReexamine;
+
 
     public String getInspectionPlanId() {
         return inspectionPlanId;
@@ -129,4 +137,60 @@
     public void setStatusCd(String statusCd) {
         this.statusCd = statusCd;
     }
+
+    public String getStartDate() {
+        return startDate;
+    }
+
+    public void setStartDate(String startDate) {
+        this.startDate = startDate;
+    }
+
+    public String getEndDate() {
+        return endDate;
+    }
+
+    public void setEndDate(String endDate) {
+        this.endDate = endDate;
+    }
+
+    public String getInspectionMonth() {
+        return inspectionMonth;
+    }
+
+    public void setInspectionMonth(String inspectionMonth) {
+        this.inspectionMonth = inspectionMonth;
+    }
+
+    public String getInspectionDay() {
+        return inspectionDay;
+    }
+
+    public void setInspectionDay(String inspectionDay) {
+        this.inspectionDay = inspectionDay;
+    }
+
+    public String getInspectionWorkday() {
+        return inspectionWorkday;
+    }
+
+    public void setInspectionWorkday(String inspectionWorkday) {
+        this.inspectionWorkday = inspectionWorkday;
+    }
+
+    public String getBeforeTime() {
+        return beforeTime;
+    }
+
+    public void setBeforeTime(String beforeTime) {
+        this.beforeTime = beforeTime;
+    }
+
+    public String getCanReexamine() {
+        return canReexamine;
+    }
+
+    public void setCanReexamine(String canReexamine) {
+        this.canReexamine = canReexamine;
+    }
 }

--
Gitblit v1.8.0