From 0b04f664887c73e90bf684a4e69c0fdbfe26349d Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 29 三月 2023 13:35:20 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
java110-bean/src/main/java/com/java110/dto/couponPropertyUser/CouponPropertyUserDto.java | 69 ++++++++++++++++++++++++++++++++--
1 files changed, 64 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..64b1328 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,23 @@
**/
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_CHARGE = "5005"; //鍏呯數鍔�
+ 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 +39,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 +92,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 +165,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