|
@@ -87,6 +87,9 @@ public class SysCoupon extends BaseEntity implements Serializable{
|
|
|
|
|
|
private java.util.Date updateTime;
|
|
|
|
|
|
+ @ApiModelProperty("非数据库字段-可以领取的优惠券数量")
|
|
|
+ private Integer canBeGetNum;
|
|
|
+
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -263,6 +266,14 @@ public class SysCoupon extends BaseEntity implements Serializable{
|
|
|
this.typeDetail = typeDetail;
|
|
|
}
|
|
|
|
|
|
+ public Integer getCanBeGetNum() {
|
|
|
+ return canBeGetNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCanBeGetNum(Integer canBeGetNum) {
|
|
|
+ this.canBeGetNum = canBeGetNum;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return ToStringBuilder.reflectionToString(this);
|