From c9f6484428b36b2120be601bc3739115603c35d7 Mon Sep 17 00:00:00 2001 From: 13405411873 <1994398261@qq.com> Date: Mon, 9 Sep 2024 22:29:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=B2=E9=A2=86=E6=95=B0=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../activeApplet/entity/ActiveApplet.java | 163 +----------------- 1 file changed, 6 insertions(+), 157 deletions(-) diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeApplet/entity/ActiveApplet.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeApplet/entity/ActiveApplet.java index 77a3411c1..e020ce306 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeApplet/entity/ActiveApplet.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeApplet/entity/ActiveApplet.java @@ -5,6 +5,8 @@ import java.util.Date; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.extension.activerecord.Model; +import lombok.Data; + import java.io.Serializable; /** @@ -13,7 +15,7 @@ import java.io.Serializable; * @author makejava * @since 2024-03-11 15:28:10 */ -@SuppressWarnings("serial") +@Data public class ActiveApplet extends Model { //主键id @TableId(type = IdType.AUTO) @@ -40,8 +42,10 @@ public class ActiveApplet extends Model { private String time; //类型 private String type; - //活动时间 + //名称 private String name; + //已领数量 + private Integer sendNum; //活动id private Integer activeId; //创建者 @@ -52,160 +56,5 @@ public class ActiveApplet extends Model { private String updateBy; //更新时间 private Date updateTime; - - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public Integer getChainStoreId() { - return chainStoreId; - } - - public void setChainStoreId(Integer chainStoreId) { - this.chainStoreId = chainStoreId; - } - - public Integer getStoreId() { - return storeId; - } - - public void setStoreId(Integer storeId) { - this.storeId = storeId; - } - - public String getIsonline() { - return isonline; - } - - public void setIsonline(String isonline) { - this.isonline = isonline; - } - - public String getActiveStatus() { - return activeStatus; - } - - public void setActiveStatus(String activeStatus) { - this.activeStatus = activeStatus; - } - - public String getAdaptUserType() { - return adaptUserType; - } - - public void setAdaptUserType(String adaptUserType) { - this.adaptUserType = adaptUserType; - } - - public String getDiscountActiveDescribe() { - return discountActiveDescribe; - } - - public void setDiscountActiveDescribe(String discountActiveDescribe) { - this.discountActiveDescribe = discountActiveDescribe; - } - - public Integer getGrowaValue() { - return growaValue; - } - - public void setGrowaValue(Integer growaValue) { - this.growaValue = growaValue; - } - - public String getOilName() { - return oilName; - } - - public void setOilName(String oilName) { - this.oilName = oilName; - } - - public Integer getPoints() { - return points; - } - - public void setPoints(Integer points) { - this.points = points; - } - - public String getTime() { - return time; - } - - public void setTime(String time) { - this.time = time; - } - - public String getType() { - return type; - } - - public void setType(String type) { - this.type = type; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public Integer getActiveId() { - return activeId; - } - - public void setActiveId(Integer activeId) { - this.activeId = activeId; - } - - public String getCreateBy() { - return createBy; - } - - public void setCreateBy(String createBy) { - this.createBy = createBy; - } - - public Date getCreateTime() { - return createTime; - } - - public void setCreateTime(Date createTime) { - this.createTime = createTime; - } - - public String getUpdateBy() { - return updateBy; - } - - public void setUpdateBy(String updateBy) { - this.updateBy = updateBy; - } - - public Date getUpdateTime() { - return updateTime; - } - - public void setUpdateTime(Date updateTime) { - this.updateTime = updateTime; - } - - /** - * 获取主键值 - * - * @return 主键值 - */ - @Override - protected Serializable pkVal() { - return this.id; - } }