|
|
@@ -67,6 +67,16 @@ public class CouponInfo {
|
|
|
*/
|
|
|
private String orderByStr;
|
|
|
|
|
|
+ /**
|
|
|
+ * 检查时间有效
|
|
|
+ */
|
|
|
+ private String checkTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询数量
|
|
|
+ */
|
|
|
+ private Integer limitNum;
|
|
|
+
|
|
|
public Integer getId() {
|
|
|
return this.id;
|
|
|
}
|
|
|
@@ -290,5 +300,21 @@ public class CouponInfo {
|
|
|
public void setUserCount(Integer userCount) {
|
|
|
this.userCount = userCount;
|
|
|
}
|
|
|
+
|
|
|
+ public String getCheckTime() {
|
|
|
+ return checkTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCheckTime(String checkTime) {
|
|
|
+ this.checkTime = checkTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getLimitNum() {
|
|
|
+ return limitNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLimitNum(Integer limitNum) {
|
|
|
+ this.limitNum = limitNum;
|
|
|
+ }
|
|
|
}
|
|
|
|