From 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 19 七月 2022 21:49:55 +0800
Subject: [PATCH] 优化添加设备 功能

---
 java110-bean/src/main/java/com/java110/dto/allocationStorehouseApply/AllocationStorehouseApplyDto.java |  105 +++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 103 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 68414c0..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,13 +15,24 @@
  **/
 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;
     private String remark;
     private String state;
+    private String stateName;
     private String storeId;
     private String currentUserId;
     private String processInstanceId;
@@ -31,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;
@@ -93,7 +115,6 @@
     public void setStoreId(String storeId) {
         this.storeId = storeId;
     }
-
 
     public Date getCreateTime() {
         return createTime;
@@ -182,4 +203,84 @@
     public void setApplyIds(String[] applyIds) {
         this.applyIds = applyIds;
     }
+
+    public String getStateName() {
+        return stateName;
+    }
+
+    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