From a706c7c62c7bd2b66d0c1b10c8eb6a25af9430b1 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期五, 13 一月 2023 11:30:02 +0800
Subject: [PATCH] 优化申请放行工鞥呢
---
java110-bean/src/main/java/com/java110/dto/inspectionPlan/InspectionPlanDto.java | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 115 insertions(+), 0 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/inspectionPlan/InspectionPlanDto.java b/java110-bean/src/main/java/com/java110/dto/inspectionPlan/InspectionPlanDto.java
old mode 100644
new mode 100755
index 3e74c6d..de3d307
--- a/java110-bean/src/main/java/com/java110/dto/inspectionPlan/InspectionPlanDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/inspectionPlan/InspectionPlanDto.java
@@ -17,6 +17,13 @@
**/
public class InspectionPlanDto extends PageDto implements Serializable {
+ public static final String STATE_STOP = "2020026";
+ public static final String STATE_RUN = "2020025";
+
+ public static final String INSPECTION_PLAN_PERIOD_DAY = "2020022"; // 杩炵画姣忓ぉ
+ public static final String INSPECTION_PLAN_PERIOD_WEEK = "2020023"; // 杩炵画姣忓懆
+ public static final String INSPECTION_PLAN_PERIOD_NEXT_DAY = "2020024"; // 杩炵画闅斿ぉ
+
private String inspectionPlanName;
private String inspectionRouteId;
private String inspectionRouteName;
@@ -26,6 +33,7 @@
private String staffName;
private String signType;
private String startTime;
+ private String curTime;
private String createUserId;
private String createUserName;
private String inspectionPlanId;
@@ -34,6 +42,17 @@
private String staffId;
private Date createTime;
private String statusCd = "0";
+ private String stateName;
+ private String inspectionPlanPeriodName;
+ private String signTypeName;
+ private String keyWord;
+ private String inspectionMonth;
+ private String inspectionDay;
+ private String inspectionWorkday;
+ private String startDate;
+ private String endDate;
+ private String beforeTime;
+ private String canReexamine;
public String getInspectionPlanName() {
@@ -173,4 +192,100 @@
public void setStartTime(String startTime) {
this.startTime = startTime;
}
+
+ public String getStateName() {
+ return stateName;
+ }
+
+ public void setStateName(String stateName) {
+ this.stateName = stateName;
+ }
+
+ public String getInspectionPlanPeriodName() {
+ return inspectionPlanPeriodName;
+ }
+
+ public void setInspectionPlanPeriodName(String inspectionPlanPeriodName) {
+ this.inspectionPlanPeriodName = inspectionPlanPeriodName;
+ }
+
+ public String getSignTypeName() {
+ return signTypeName;
+ }
+
+ public void setSignTypeName(String signTypeName) {
+ this.signTypeName = signTypeName;
+ }
+
+ public String getKeyWord() {
+ return keyWord;
+ }
+
+ public void setKeyWord(String keyWord) {
+ this.keyWord = keyWord;
+ }
+
+ public String getCurTime() {
+ return curTime;
+ }
+
+ public void setCurTime(String curTime) {
+ this.curTime = curTime;
+ }
+
+ 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 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 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