储值送积分活动

This commit is contained in:
谭凯凯
2024-11-09 09:55:16 +08:00
committed by Tankaikai
parent 8bf63d821d
commit 9304543b96
4 changed files with 107 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
package com.chaozhanggui.system.cashierservice.entity;
import java.util.Date;
import java.io.Serializable;
import java.util.Date;
/**
* (TbActivate)实体类
@@ -23,6 +23,10 @@ public class TbActivate implements Serializable {
* 赠送金额
*/
private Integer giftAmount;
/**
* 赠送积分
*/
private Integer giftPoints;
/**
* 是否使用优惠卷 0否 1是
*/
@@ -113,5 +117,12 @@ public class TbActivate implements Serializable {
this.updateTime = updateTime;
}
public Integer getGiftPoints() {
return giftPoints;
}
public void setGiftPoints(Integer giftPoints) {
this.giftPoints = giftPoints;
}
}