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/couponPropertyUser/CouponPropertyUserDto.java |   67 +++++++++++++++++++++++++++++++--
 1 files changed, 62 insertions(+), 5 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/dto/couponPropertyUser/CouponPropertyUserDto.java b/java110-bean/src/main/java/com/java110/dto/couponPropertyUser/CouponPropertyUserDto.java
index 06c5ec4..a0d4428 100644
--- a/java110-bean/src/main/java/com/java110/dto/couponPropertyUser/CouponPropertyUserDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/couponPropertyUser/CouponPropertyUserDto.java
@@ -15,12 +15,21 @@
  **/
 public class CouponPropertyUserDto extends PageDto implements Serializable {
 
+    public static final String STATE_WAIT = "1001";
+    public static final String STATE_FINISH = "2002";
+    public static final String TO_TYPE_PARKING = "4004"; //鍋滆溅鍒�
+    public static final String TO_TYPE_BUY = "1001"; //璐墿鍒�
+    public static final String TO_TYPE_BUY_INNER = "1011"; //璐墿鍒�
+    public static final String TO_TYPE_BUY_REPAIR = "3003"; //缁翠慨鍒�
+
+
     private String couponName;
     private String toType;
+    private String toTypeName;
     private String validityDay;
     private String couponId;
     private String userName;
-    private String userId;
+    private String couponUserId;
     private String cppId;
     private String tel;
     private String state;
@@ -28,10 +37,17 @@
     private String communityId;
     private String value;
 
+    private String endTime;
+    private String isExpire;
+
 
     private Date createTime;
 
     private String statusCd = "0";
+
+    private String startTime;
+
+    private String isStart;
 
 
     public String getCouponName() {
@@ -74,12 +90,13 @@
         this.userName = userName;
     }
 
-    public String getUserId() {
-        return userId;
+
+    public String getCouponUserId() {
+        return couponUserId;
     }
 
-    public void setUserId(String userId) {
-        this.userId = userId;
+    public void setCouponUserId(String couponUserId) {
+        this.couponUserId = couponUserId;
     }
 
     public String getCppId() {
@@ -146,4 +163,44 @@
     public void setStatusCd(String statusCd) {
         this.statusCd = statusCd;
     }
+
+    public String getToTypeName() {
+        return toTypeName;
+    }
+
+    public void setToTypeName(String toTypeName) {
+        this.toTypeName = toTypeName;
+    }
+
+    public String getEndTime() {
+        return endTime;
+    }
+
+    public void setEndTime(String endTime) {
+        this.endTime = endTime;
+    }
+
+    public String getIsExpire() {
+        return isExpire;
+    }
+
+    public void setIsExpire(String isExpire) {
+        this.isExpire = isExpire;
+    }
+
+    public String getStartTime() {
+        return startTime;
+    }
+
+    public void setStartTime(String startTime) {
+        this.startTime = startTime;
+    }
+
+    public String getIsStart() {
+        return isStart;
+    }
+
+    public void setIsStart(String isStart) {
+        this.isStart = isStart;
+    }
 }

--
Gitblit v1.8.0