bug
This commit is contained in:
parent
e59375cc91
commit
0d564e2113
@ -4,11 +4,13 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.fuint.business.marketingActivity.activeDiscount.entity.ActiveDiscountChild;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class ActiveDiscountDTO implements Serializable{
|
||||
//主键id
|
||||
@TableId(type = IdType.AUTO)
|
||||
@ -61,190 +63,10 @@ public class ActiveDiscountDTO implements Serializable{
|
||||
//更新时间
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" , timezone = "GMT+8")
|
||||
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 getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Date getActiveStartTime() {
|
||||
return activeStartTime;
|
||||
}
|
||||
|
||||
public void setActiveStartTime(Date activeStartTime) {
|
||||
this.activeStartTime = activeStartTime;
|
||||
}
|
||||
|
||||
public Date getActiveEndTime() {
|
||||
return activeEndTime;
|
||||
}
|
||||
|
||||
public void setActiveEndTime(Date activeEndTime) {
|
||||
this.activeEndTime = activeEndTime;
|
||||
}
|
||||
|
||||
public String[] getAdaptOil() {
|
||||
return adaptOil;
|
||||
}
|
||||
|
||||
public void setAdaptOil(String[] adaptOil) {
|
||||
this.adaptOil = adaptOil;
|
||||
}
|
||||
|
||||
public String getAdaptUserType() {
|
||||
return adaptUserType;
|
||||
}
|
||||
|
||||
public void setAdaptUserType(String adaptUserType) {
|
||||
this.adaptUserType = adaptUserType;
|
||||
}
|
||||
|
||||
public String getMemberType() {
|
||||
return memberType;
|
||||
}
|
||||
|
||||
public void setMemberType(String memberType) {
|
||||
this.memberType = memberType;
|
||||
}
|
||||
|
||||
public String[] getDieselUserLevel() {
|
||||
return dieselUserLevel;
|
||||
}
|
||||
|
||||
public void setDieselUserLevel(String[] dieselUserLevel) {
|
||||
this.dieselUserLevel = dieselUserLevel;
|
||||
}
|
||||
|
||||
public String[] getGasolineUserLevel() {
|
||||
return gasolineUserLevel;
|
||||
}
|
||||
|
||||
public void setGasolineUserLevel(String[] gasolineUserLevel) {
|
||||
this.gasolineUserLevel = gasolineUserLevel;
|
||||
}
|
||||
|
||||
public String[] getNaturalUserLevel() {
|
||||
return naturalUserLevel;
|
||||
}
|
||||
|
||||
public void setNaturalUserLevel(String[] naturalUserLevel) {
|
||||
this.naturalUserLevel = naturalUserLevel;
|
||||
}
|
||||
|
||||
public String getPaymentType() {
|
||||
return paymentType;
|
||||
}
|
||||
|
||||
public void setPaymentType(String paymentType) {
|
||||
this.paymentType = paymentType;
|
||||
}
|
||||
|
||||
public String getParticipationCondition() {
|
||||
return participationCondition;
|
||||
}
|
||||
|
||||
public void setParticipationCondition(String participationCondition) {
|
||||
this.participationCondition = participationCondition;
|
||||
}
|
||||
|
||||
public String getParticipationAcount() {
|
||||
return participationAcount;
|
||||
}
|
||||
|
||||
public void setParticipationAcount(String participationAcount) {
|
||||
this.participationAcount = participationAcount;
|
||||
}
|
||||
|
||||
public Integer getLimitAcount() {
|
||||
return limitAcount;
|
||||
}
|
||||
|
||||
public void setLimitAcount(Integer limitAcount) {
|
||||
this.limitAcount = limitAcount;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getIsonline() {
|
||||
return isonline;
|
||||
}
|
||||
|
||||
public void setIsonline(String isonline) {
|
||||
this.isonline = isonline;
|
||||
}
|
||||
|
||||
public List<ActiveDiscountChild> getActiveDiscountChildList() {
|
||||
return activeDiscountChildList;
|
||||
}
|
||||
|
||||
public void setActiveDiscountChildList(List<ActiveDiscountChild> activeDiscountChildList) {
|
||||
this.activeDiscountChildList = activeDiscountChildList;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
//会员日类型 1:周 2:月
|
||||
private String memberDayType;
|
||||
//每周的会员日
|
||||
private String weekDay;
|
||||
//每月的会员日
|
||||
private String monthDay;
|
||||
}
|
||||
|
@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@ -16,6 +17,7 @@ import java.io.Serializable;
|
||||
* @since 2023-11-11 17:03:25
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
@Data
|
||||
public class ActiveDiscount extends Model<ActiveDiscount> {
|
||||
//主键id
|
||||
@TableId(type = IdType.AUTO)
|
||||
@ -67,182 +69,12 @@ public class ActiveDiscount extends Model<ActiveDiscount> {
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" , timezone = "GMT+8")
|
||||
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 getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Date getActiveStartTime() {
|
||||
return activeStartTime;
|
||||
}
|
||||
|
||||
public void setActiveStartTime(Date activeStartTime) {
|
||||
this.activeStartTime = activeStartTime;
|
||||
}
|
||||
|
||||
public Date getActiveEndTime() {
|
||||
return activeEndTime;
|
||||
}
|
||||
|
||||
public void setActiveEndTime(Date activeEndTime) {
|
||||
this.activeEndTime = activeEndTime;
|
||||
}
|
||||
|
||||
public String getAdaptOil() {
|
||||
return adaptOil;
|
||||
}
|
||||
|
||||
public void setAdaptOil(String adaptOil) {
|
||||
this.adaptOil = adaptOil;
|
||||
}
|
||||
|
||||
public String getAdaptUserType() {
|
||||
return adaptUserType;
|
||||
}
|
||||
|
||||
public void setAdaptUserType(String adaptUserType) {
|
||||
this.adaptUserType = adaptUserType;
|
||||
}
|
||||
|
||||
public String getMemberType() {
|
||||
return memberType;
|
||||
}
|
||||
|
||||
public void setMemberType(String memberType) {
|
||||
this.memberType = memberType;
|
||||
}
|
||||
|
||||
public String getDieselUserLevel() {
|
||||
return dieselUserLevel;
|
||||
}
|
||||
|
||||
public void setDieselUserLevel(String dieselUserLevel) {
|
||||
this.dieselUserLevel = dieselUserLevel;
|
||||
}
|
||||
|
||||
public String getGasolineUserLevel() {
|
||||
return gasolineUserLevel;
|
||||
}
|
||||
|
||||
public void setGasolineUserLevel(String gasolineUserLevel) {
|
||||
this.gasolineUserLevel = gasolineUserLevel;
|
||||
}
|
||||
|
||||
public String getNaturalUserLevel() {
|
||||
return naturalUserLevel;
|
||||
}
|
||||
|
||||
public void setNaturalUserLevel(String naturalUserLevel) {
|
||||
this.naturalUserLevel = naturalUserLevel;
|
||||
}
|
||||
|
||||
public String getPaymentType() {
|
||||
return paymentType;
|
||||
}
|
||||
|
||||
public void setPaymentType(String paymentType) {
|
||||
this.paymentType = paymentType;
|
||||
}
|
||||
|
||||
public String getParticipationCondition() {
|
||||
return participationCondition;
|
||||
}
|
||||
|
||||
public void setParticipationCondition(String participationCondition) {
|
||||
this.participationCondition = participationCondition;
|
||||
}
|
||||
|
||||
public String getParticipationAcount() {
|
||||
return participationAcount;
|
||||
}
|
||||
|
||||
public void setParticipationAcount(String participationAcount) {
|
||||
this.participationAcount = participationAcount;
|
||||
}
|
||||
|
||||
public Integer getLimitAcount() {
|
||||
return limitAcount;
|
||||
}
|
||||
|
||||
public void setLimitAcount(Integer limitAcount) {
|
||||
this.limitAcount = limitAcount;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getIsonline() {
|
||||
return isonline;
|
||||
}
|
||||
|
||||
public void setIsonline(String isonline) {
|
||||
this.isonline = isonline;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
//会员日类型 1:周 2:月
|
||||
private String memberDayType;
|
||||
//每周的会员日
|
||||
private String weekDay;
|
||||
//每月的会员日
|
||||
private String monthDay;
|
||||
|
||||
/**
|
||||
* 获取主键值
|
||||
|
@ -66,197 +66,10 @@ public class ActiveDiscountVO implements Serializable{
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" , timezone = "GMT+8")
|
||||
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 getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Date getActiveStartTime() {
|
||||
return activeStartTime;
|
||||
}
|
||||
|
||||
public void setActiveStartTime(Date activeStartTime) {
|
||||
this.activeStartTime = activeStartTime;
|
||||
}
|
||||
|
||||
public Date getActiveEndTime() {
|
||||
return activeEndTime;
|
||||
}
|
||||
|
||||
public void setActiveEndTime(Date activeEndTime) {
|
||||
this.activeEndTime = activeEndTime;
|
||||
}
|
||||
|
||||
public String[] getAdaptOils() {
|
||||
return adaptOils;
|
||||
}
|
||||
|
||||
public void setAdaptOils(String[] adaptOils) {
|
||||
this.adaptOils = adaptOils;
|
||||
}
|
||||
|
||||
public Integer[] getAdaptOil() {
|
||||
return adaptOil;
|
||||
}
|
||||
|
||||
public void setAdaptOil(Integer[] adaptOil) {
|
||||
this.adaptOil = adaptOil;
|
||||
}
|
||||
|
||||
public String getAdaptUserType() {
|
||||
return adaptUserType;
|
||||
}
|
||||
|
||||
public void setAdaptUserType(String adaptUserType) {
|
||||
this.adaptUserType = adaptUserType;
|
||||
}
|
||||
|
||||
public String getMemberType() {
|
||||
return memberType;
|
||||
}
|
||||
|
||||
public void setMemberType(String memberType) {
|
||||
this.memberType = memberType;
|
||||
}
|
||||
|
||||
public String[] getDieselUserLevel() {
|
||||
return dieselUserLevel;
|
||||
}
|
||||
|
||||
public void setDieselUserLevel(String[] dieselUserLevel) {
|
||||
this.dieselUserLevel = dieselUserLevel;
|
||||
}
|
||||
|
||||
public String[] getGasolineUserLevel() {
|
||||
return gasolineUserLevel;
|
||||
}
|
||||
|
||||
public void setGasolineUserLevel(String[] gasolineUserLevel) {
|
||||
this.gasolineUserLevel = gasolineUserLevel;
|
||||
}
|
||||
|
||||
public String[] getNaturalUserLevel() {
|
||||
return naturalUserLevel;
|
||||
}
|
||||
|
||||
public void setNaturalUserLevel(String[] naturalUserLevel) {
|
||||
this.naturalUserLevel = naturalUserLevel;
|
||||
}
|
||||
|
||||
public String getPaymentType() {
|
||||
return paymentType;
|
||||
}
|
||||
|
||||
public void setPaymentType(String paymentType) {
|
||||
this.paymentType = paymentType;
|
||||
}
|
||||
|
||||
public String getParticipationCondition() {
|
||||
return participationCondition;
|
||||
}
|
||||
|
||||
public void setParticipationCondition(String participationCondition) {
|
||||
this.participationCondition = participationCondition;
|
||||
}
|
||||
|
||||
public String getParticipationAcount() {
|
||||
return participationAcount;
|
||||
}
|
||||
|
||||
public void setParticipationAcount(String participationAcount) {
|
||||
this.participationAcount = participationAcount;
|
||||
}
|
||||
|
||||
public Integer getLimitAcount() {
|
||||
return limitAcount;
|
||||
}
|
||||
|
||||
public void setLimitAcount(Integer limitAcount) {
|
||||
this.limitAcount = limitAcount;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getIsonline() {
|
||||
return isonline;
|
||||
}
|
||||
|
||||
public void setIsonline(String isonline) {
|
||||
this.isonline = isonline;
|
||||
}
|
||||
|
||||
public List<ActiveDiscountChild> getActiveDiscountChildList() {
|
||||
return activeDiscountChildList;
|
||||
}
|
||||
|
||||
public void setActiveDiscountChildList(List<ActiveDiscountChild> activeDiscountChildList) {
|
||||
this.activeDiscountChildList = activeDiscountChildList;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
//会员日类型 1:周 2:月
|
||||
private String memberDayType;
|
||||
//每周的会员日
|
||||
private String weekDay;
|
||||
//每月的会员日
|
||||
private String monthDay;
|
||||
}
|
||||
|
@ -4,11 +4,13 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.fuint.business.marketingActivity.activeDiscount.entity.ActiveDiscountChild;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class ActiveFullminusDTO implements Serializable {
|
||||
//主键id
|
||||
@TableId(type = IdType.AUTO)
|
||||
@ -62,187 +64,10 @@ public class ActiveFullminusDTO implements Serializable {
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" , timezone = "GMT+8")
|
||||
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 getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Date getActiveStartTime() {
|
||||
return activeStartTime;
|
||||
}
|
||||
|
||||
public void setActiveStartTime(Date activeStartTime) {
|
||||
this.activeStartTime = activeStartTime;
|
||||
}
|
||||
|
||||
public Date getActiveEndTime() {
|
||||
return activeEndTime;
|
||||
}
|
||||
|
||||
public void setActiveEndTime(Date activeEndTime) {
|
||||
this.activeEndTime = activeEndTime;
|
||||
}
|
||||
|
||||
public String[] getAdaptOil() {
|
||||
return adaptOil;
|
||||
}
|
||||
|
||||
public void setAdaptOil(String[] adaptOil) {
|
||||
this.adaptOil = adaptOil;
|
||||
}
|
||||
|
||||
public String getAdaptUserType() {
|
||||
return adaptUserType;
|
||||
}
|
||||
|
||||
public void setAdaptUserType(String adaptUserType) {
|
||||
this.adaptUserType = adaptUserType;
|
||||
}
|
||||
|
||||
public String getMemberType() {
|
||||
return memberType;
|
||||
}
|
||||
|
||||
public void setMemberType(String memberType) {
|
||||
this.memberType = memberType;
|
||||
}
|
||||
|
||||
public String[] getDieselUserLevel() {
|
||||
return dieselUserLevel;
|
||||
}
|
||||
|
||||
public void setDieselUserLevel(String[] dieselUserLevel) {
|
||||
this.dieselUserLevel = dieselUserLevel;
|
||||
}
|
||||
|
||||
public String[] getGasolineUserLevel() {
|
||||
return gasolineUserLevel;
|
||||
}
|
||||
|
||||
public void setGasolineUserLevel(String[] gasolineUserLevel) {
|
||||
this.gasolineUserLevel = gasolineUserLevel;
|
||||
}
|
||||
|
||||
public String[] getNaturalUserLevel() {
|
||||
return naturalUserLevel;
|
||||
}
|
||||
|
||||
public void setNaturalUserLevel(String[] naturalUserLevel) {
|
||||
this.naturalUserLevel = naturalUserLevel;
|
||||
}
|
||||
|
||||
public String getPaymentType() {
|
||||
return paymentType;
|
||||
}
|
||||
|
||||
public void setPaymentType(String paymentType) {
|
||||
this.paymentType = paymentType;
|
||||
}
|
||||
|
||||
public String getParticipationCondition() {
|
||||
return participationCondition;
|
||||
}
|
||||
|
||||
public void setParticipationCondition(String participationCondition) {
|
||||
this.participationCondition = participationCondition;
|
||||
}
|
||||
|
||||
public String getParticipationAcount() {
|
||||
return participationAcount;
|
||||
}
|
||||
|
||||
public void setParticipationAcount(String participationAcount) {
|
||||
this.participationAcount = participationAcount;
|
||||
}
|
||||
|
||||
public Integer getLimitAcount() {
|
||||
return limitAcount;
|
||||
}
|
||||
|
||||
public void setLimitAcount(Integer limitAcount) {
|
||||
this.limitAcount = limitAcount;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getIsonline() {
|
||||
return isonline;
|
||||
}
|
||||
|
||||
public void setIsonline(String isonline) {
|
||||
this.isonline = isonline;
|
||||
}
|
||||
|
||||
public List<ActiveDiscountChild> getActiveDiscountChildList() {
|
||||
return activeDiscountChildList;
|
||||
}
|
||||
|
||||
public void setActiveDiscountChildList(List<ActiveDiscountChild> activeDiscountChildList) {
|
||||
this.activeDiscountChildList = activeDiscountChildList;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
//会员日类型 1:周 2:月
|
||||
private String memberDayType;
|
||||
//每周的会员日
|
||||
private String weekDay;
|
||||
//每月的会员日
|
||||
private String monthDay;
|
||||
}
|
||||
|
@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@ -16,6 +17,7 @@ import java.io.Serializable;
|
||||
* @since 2023-11-11 17:03:50
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
@Data
|
||||
public class ActiveFullminus extends Model<ActiveFullminus> {
|
||||
//主键id
|
||||
@TableId(type = IdType.AUTO)
|
||||
@ -66,184 +68,12 @@ public class ActiveFullminus extends Model<ActiveFullminus> {
|
||||
//更新时间
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" , timezone = "GMT+8")
|
||||
private Date updateTime;
|
||||
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getChainStorId() {
|
||||
return chainStorId;
|
||||
}
|
||||
|
||||
public void setChainStorId(Integer chainStorId) {
|
||||
this.chainStorId = chainStorId;
|
||||
}
|
||||
|
||||
public Integer getStoreId() {
|
||||
return storeId;
|
||||
}
|
||||
|
||||
public void setStoreId(Integer storeId) {
|
||||
this.storeId = storeId;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Date getActiveStartTime() {
|
||||
return activeStartTime;
|
||||
}
|
||||
|
||||
public void setActiveStartTime(Date activeStartTime) {
|
||||
this.activeStartTime = activeStartTime;
|
||||
}
|
||||
|
||||
public Date getActiveEndTime() {
|
||||
return activeEndTime;
|
||||
}
|
||||
|
||||
public void setActiveEndTime(Date activeEndTime) {
|
||||
this.activeEndTime = activeEndTime;
|
||||
}
|
||||
|
||||
public String getAdaptOil() {
|
||||
return adaptOil;
|
||||
}
|
||||
|
||||
public void setAdaptOil(String adaptOil) {
|
||||
this.adaptOil = adaptOil;
|
||||
}
|
||||
|
||||
public String getAdaptUserType() {
|
||||
return adaptUserType;
|
||||
}
|
||||
|
||||
public void setAdaptUserType(String adaptUserType) {
|
||||
this.adaptUserType = adaptUserType;
|
||||
}
|
||||
|
||||
public String getMemberType() {
|
||||
return memberType;
|
||||
}
|
||||
|
||||
public void setMemberType(String memberType) {
|
||||
this.memberType = memberType;
|
||||
}
|
||||
|
||||
public String getDieselUserLevel() {
|
||||
return dieselUserLevel;
|
||||
}
|
||||
|
||||
public void setDieselUserLevel(String dieselUserLevel) {
|
||||
this.dieselUserLevel = dieselUserLevel;
|
||||
}
|
||||
|
||||
public String getGasolineUserLevel() {
|
||||
return gasolineUserLevel;
|
||||
}
|
||||
|
||||
public void setGasolineUserLevel(String gasolineUserLevel) {
|
||||
this.gasolineUserLevel = gasolineUserLevel;
|
||||
}
|
||||
|
||||
public String getNaturalUserLevel() {
|
||||
return naturalUserLevel;
|
||||
}
|
||||
|
||||
public void setNaturalUserLevel(String naturalUserLevel) {
|
||||
this.naturalUserLevel = naturalUserLevel;
|
||||
}
|
||||
|
||||
public String getPaymentType() {
|
||||
return paymentType;
|
||||
}
|
||||
|
||||
public void setPaymentType(String paymentType) {
|
||||
this.paymentType = paymentType;
|
||||
}
|
||||
|
||||
public String getParticipationCondition() {
|
||||
return participationCondition;
|
||||
}
|
||||
|
||||
public void setParticipationCondition(String participationCondition) {
|
||||
this.participationCondition = participationCondition;
|
||||
}
|
||||
|
||||
public String getParticipationAcount() {
|
||||
return participationAcount;
|
||||
}
|
||||
|
||||
public void setParticipationAcount(String participationAcount) {
|
||||
this.participationAcount = participationAcount;
|
||||
}
|
||||
|
||||
public Integer getLimitAcount() {
|
||||
return limitAcount;
|
||||
}
|
||||
|
||||
public void setLimitAcount(Integer limitAcount) {
|
||||
this.limitAcount = limitAcount;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getIsonline() {
|
||||
return isonline;
|
||||
}
|
||||
|
||||
public void setIsonline(String isonline) {
|
||||
this.isonline = isonline;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
//会员日类型 1:周 2:月
|
||||
private String memberDayType;
|
||||
//每周的会员日
|
||||
private String weekDay;
|
||||
//每月的会员日
|
||||
private String monthDay;
|
||||
/**
|
||||
* 获取主键值
|
||||
*
|
||||
|
@ -65,196 +65,10 @@ public class ActiveFullminusVO implements Serializable {
|
||||
//更新时间
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" , timezone = "GMT+8")
|
||||
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 getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Date getActiveStartTime() {
|
||||
return activeStartTime;
|
||||
}
|
||||
|
||||
public void setActiveStartTime(Date activeStartTime) {
|
||||
this.activeStartTime = activeStartTime;
|
||||
}
|
||||
|
||||
public Date getActiveEndTime() {
|
||||
return activeEndTime;
|
||||
}
|
||||
|
||||
public void setActiveEndTime(Date activeEndTime) {
|
||||
this.activeEndTime = activeEndTime;
|
||||
}
|
||||
|
||||
public String[] getAdaptOils() {
|
||||
return adaptOils;
|
||||
}
|
||||
|
||||
public void setAdaptOils(String[] adaptOils) {
|
||||
this.adaptOils = adaptOils;
|
||||
}
|
||||
|
||||
public Integer[] getAdaptOil() {
|
||||
return adaptOil;
|
||||
}
|
||||
|
||||
public void setAdaptOil(Integer[] adaptOil) {
|
||||
this.adaptOil = adaptOil;
|
||||
}
|
||||
|
||||
public String getAdaptUserType() {
|
||||
return adaptUserType;
|
||||
}
|
||||
|
||||
public void setAdaptUserType(String adaptUserType) {
|
||||
this.adaptUserType = adaptUserType;
|
||||
}
|
||||
|
||||
public String getMemberType() {
|
||||
return memberType;
|
||||
}
|
||||
|
||||
public void setMemberType(String memberType) {
|
||||
this.memberType = memberType;
|
||||
}
|
||||
|
||||
public String[] getDieselUserLevel() {
|
||||
return dieselUserLevel;
|
||||
}
|
||||
|
||||
public void setDieselUserLevel(String[] dieselUserLevel) {
|
||||
this.dieselUserLevel = dieselUserLevel;
|
||||
}
|
||||
|
||||
public String[] getGasolineUserLevel() {
|
||||
return gasolineUserLevel;
|
||||
}
|
||||
|
||||
public void setGasolineUserLevel(String[] gasolineUserLevel) {
|
||||
this.gasolineUserLevel = gasolineUserLevel;
|
||||
}
|
||||
|
||||
public String[] getNaturalUserLevel() {
|
||||
return naturalUserLevel;
|
||||
}
|
||||
|
||||
public void setNaturalUserLevel(String[] naturalUserLevel) {
|
||||
this.naturalUserLevel = naturalUserLevel;
|
||||
}
|
||||
|
||||
public String getPaymentType() {
|
||||
return paymentType;
|
||||
}
|
||||
|
||||
public void setPaymentType(String paymentType) {
|
||||
this.paymentType = paymentType;
|
||||
}
|
||||
|
||||
public String getParticipationCondition() {
|
||||
return participationCondition;
|
||||
}
|
||||
|
||||
public void setParticipationCondition(String participationCondition) {
|
||||
this.participationCondition = participationCondition;
|
||||
}
|
||||
|
||||
public String getParticipationAcount() {
|
||||
return participationAcount;
|
||||
}
|
||||
|
||||
public void setParticipationAcount(String participationAcount) {
|
||||
this.participationAcount = participationAcount;
|
||||
}
|
||||
|
||||
public Integer getLimitAcount() {
|
||||
return limitAcount;
|
||||
}
|
||||
|
||||
public void setLimitAcount(Integer limitAcount) {
|
||||
this.limitAcount = limitAcount;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getIsonline() {
|
||||
return isonline;
|
||||
}
|
||||
|
||||
public void setIsonline(String isonline) {
|
||||
this.isonline = isonline;
|
||||
}
|
||||
|
||||
public List<ActiveDiscountChild> getActiveDiscountChildList() {
|
||||
return activeDiscountChildList;
|
||||
}
|
||||
|
||||
public void setActiveDiscountChildList(List<ActiveDiscountChild> activeDiscountChildList) {
|
||||
this.activeDiscountChildList = activeDiscountChildList;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
//会员日类型 1:周 2:月
|
||||
private String memberDayType;
|
||||
//每周的会员日
|
||||
private String weekDay;
|
||||
//每月的会员日
|
||||
private String monthDay;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user