From f2d7e10b26b15142012374062387300331229c01 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期三, 30 十一月 2022 11:32:35 +0800
Subject: [PATCH] 支持 商铺查询
---
java110-bean/src/main/java/com/java110/dto/couponRuleCpps/CouponRuleCppsDto.java | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 57 insertions(+), 0 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/couponRuleCpps/CouponRuleCppsDto.java b/java110-bean/src/main/java/com/java110/dto/couponRuleCpps/CouponRuleCppsDto.java
index 4274bc6..aea6bb5 100644
--- a/java110-bean/src/main/java/com/java110/dto/couponRuleCpps/CouponRuleCppsDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/couponRuleCpps/CouponRuleCppsDto.java
@@ -15,12 +15,21 @@
**/
public class CouponRuleCppsDto extends PageDto implements Serializable {
+ public static final String FREQUENCY_ONCE = "100301"; // 璧犻�佷竴娆�
+ public static final String FREQUENCY_MONTH = "1003012"; // 姣忔湀璧犻�佷竴娆�
+
private String quantity;
private String crcId;
private String cppId;
private String couponName;
private String ruleId;
+ private String ruleName;
+ private String toTypeName;
private String communityId;
+ private String[] ruleIds;
+ private String remark;
+ private String giftFrequency;
+ private String giftFrequencyName;
private Date createTime;
@@ -92,4 +101,52 @@
public void setCouponName(String couponName) {
this.couponName = couponName;
}
+
+ public String[] getRuleIds() {
+ return ruleIds;
+ }
+
+ public void setRuleIds(String[] ruleIds) {
+ this.ruleIds = ruleIds;
+ }
+
+ public String getRuleName() {
+ return ruleName;
+ }
+
+ public void setRuleName(String ruleName) {
+ this.ruleName = ruleName;
+ }
+
+ public String getToTypeName() {
+ return toTypeName;
+ }
+
+ public void setToTypeName(String toTypeName) {
+ this.toTypeName = toTypeName;
+ }
+
+ public String getRemark() {
+ return remark;
+ }
+
+ public void setRemark(String remark) {
+ this.remark = remark;
+ }
+
+ public String getGiftFrequency() {
+ return giftFrequency;
+ }
+
+ public void setGiftFrequency(String giftFrequency) {
+ this.giftFrequency = giftFrequency;
+ }
+
+ public String getGiftFrequencyName() {
+ return giftFrequencyName;
+ }
+
+ public void setGiftFrequencyName(String giftFrequencyName) {
+ this.giftFrequencyName = giftFrequencyName;
+ }
}
--
Gitblit v1.8.0