From 110d6060625a25f2546c4de3b3a57117d9cf769a Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期二, 24 一月 2023 11:46:32 +0800
Subject: [PATCH] 门禁白名单同步

---
 java110-bean/src/main/java/com/java110/dto/allocationStorehouseApply/AllocationStorehouseApplyDto.java |   96 +++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 94 insertions(+), 2 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/dto/allocationStorehouseApply/AllocationStorehouseApplyDto.java b/java110-bean/src/main/java/com/java110/dto/allocationStorehouseApply/AllocationStorehouseApplyDto.java
index 89bc836..b7d2abb 100644
--- a/java110-bean/src/main/java/com/java110/dto/allocationStorehouseApply/AllocationStorehouseApplyDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/allocationStorehouseApply/AllocationStorehouseApplyDto.java
@@ -15,8 +15,18 @@
  **/
 public class AllocationStorehouseApplyDto extends PageDto implements Serializable {
 
+    /**
+     * 10000	璋冩嫧
+     * 20000	閫�杩�
+     * 30000	绱ф�ヨ皟鎷�
+     */
+    public static final String STORE_TYPE_ALLOCATION = "10000"; //璋冩嫧
+    public static final String STORE_TYPE_RETURN = "20000";
+    public static final String STORE_TYPE_URGENT_ALLOCATION = "30000"; //绱ф�ヨ皟鎷�
+
     private String applyId;
     private String[] applyIds;
+    private String bId;
     private String startUserId;
     private String startUserName;
     private String applyCount;
@@ -32,12 +42,23 @@
     private String staffId;
     private String staffName;
     private String staffTel;
-
+    private String startTime;
+    private String endTime;
+    private String communityId;
+    private String nextUserId;
 
     private Date createTime;
 
     private String statusCd = "0";
 
+    //鐘舵�佹爣璇�
+    private String noticeState;
+
+    //璋冩嫧杩旇繕鐘舵�佹爣璇�
+    private String applyType;
+    private String applyTypeName;
+    //璋冩嫧婧愪粨搴�
+    private String shId;
 
     public String getApplyId() {
         return applyId;
@@ -94,7 +115,6 @@
     public void setStoreId(String storeId) {
         this.storeId = storeId;
     }
-
 
     public Date getCreateTime() {
         return createTime;
@@ -191,4 +211,76 @@
     public void setStateName(String stateName) {
         this.stateName = stateName;
     }
+
+    public String getStartTime() {
+        return startTime;
+    }
+
+    public void setStartTime(String startTime) {
+        this.startTime = startTime;
+    }
+
+    public String getEndTime() {
+        return endTime;
+    }
+
+    public void setEndTime(String endTime) {
+        this.endTime = endTime;
+    }
+
+    public String getCommunityId() {
+        return communityId;
+    }
+
+    public void setCommunityId(String communityId) {
+        this.communityId = communityId;
+    }
+
+    public String getNoticeState() {
+        return noticeState;
+    }
+
+    public void setNoticeState(String noticeState) {
+        this.noticeState = noticeState;
+    }
+
+    public String getApplyType() {
+        return applyType;
+    }
+
+    public void setApplyType(String applyType) {
+        this.applyType = applyType;
+    }
+
+    public String getApplyTypeName() {
+        return applyTypeName;
+    }
+
+    public void setApplyTypeName(String applyTypeName) {
+        this.applyTypeName = applyTypeName;
+    }
+
+    public String getbId() {
+        return bId;
+    }
+
+    public void setbId(String bId) {
+        this.bId = bId;
+    }
+
+    public String getShId() {
+        return shId;
+    }
+
+    public void setShId(String shId) {
+        this.shId = shId;
+    }
+
+    public String getNextUserId() {
+        return nextUserId;
+    }
+
+    public void setNextUserId(String nextUserId) {
+        this.nextUserId = nextUserId;
+    }
 }

--
Gitblit v1.8.0