From b61309edd49fca3ca2e7572d67b2d67ffe292ce6 Mon Sep 17 00:00:00 2001
From: xiaogang <905166056@qq.com>
Date: 星期二, 12 四月 2022 10:13:37 +0800
Subject: [PATCH] 1、优化访客登记,增加车辆信息2、页面显示问题
---
java110-bean/src/main/java/com/java110/dto/allocationStorehouseApply/AllocationStorehouseApplyDto.java | 78 ++++++++++++++++++++++++++++++++++++++
1 files changed, 77 insertions(+), 1 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 032c63b..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;
@@ -34,10 +44,21 @@
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;
@@ -207,4 +227,60 @@
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