123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- package com.kmall.admin.entity.vip;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * 积分规则表实体
- * 表名 mall2_points_rules
- *
- * @author emato
- * @email admin@qhdswl.com
- * @date 2020-06-15 10:44:07
- */
- public class Mall2PointsRulesEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- private Integer mprId;
- /**
- * 积分类型 :0.门店 ,1.商品类别,2.门店商品'
- */
- private Integer pointsType;
- /**
- * 积分类型 :0.门店 ,1.商品类别,2.门店商品'
- */
- private String pointsTypeStr;
- /**
- * 积分规则适用开始时间
- */
- private Date pointsBeginTime;
- /**
- * 积分规则适用结束时间
- */
- private Date pointsEndTime;
- /**
- * 积分规则是否有效
- */
- private String isValid;
- /**
- * 创建人编号
- */
- private String createrSn;
- /**
- * 创建时间,yyyy-MM-dd HH:mm:ss
- */
- private Date createTime;
- /**
- * 修改人编号
- */
- private String moderSn;
- /**
- * 修改时间,yyyy-MM-dd HH:mm:ss
- */
- private Date modTime;
- /**
- * 时间戳
- */
- private Date tstm;
- /**
- * 备注
- */
- private String remark;
- //积分金额
- private BigDecimal pointsRulesMoney;
- //对应积分数
- private String pointsRulesNum;
- //赠送积分
- private String handselIntegral;
- //积分比例
- private BigDecimal pointsProportion;
- /**
- * 设置:主键
- */
- public void setMprId(Integer mprId) {
- this.mprId = mprId;
- }
- /**
- * 获取:主键
- */
- public Integer getMprId() {
- return mprId;
- }
- /**
- * 设置:积分类型 00.按金额 10.按数量
- */
- public void setPointsType(Integer pointsType) {
- this.pointsType = pointsType;
- }
- /**
- * 获取:积分类型 00.按金额 10.按数量
- */
- public Integer getPointsType() {
- return pointsType;
- }
- /**
- * 设置:积分规则适用开始时间
- */
- public void setPointsBeginTime(Date pointsBeginTime) {
- this.pointsBeginTime = pointsBeginTime;
- }
- /**
- * 获取:积分规则适用开始时间
- */
- public Date getPointsBeginTime() {
- return pointsBeginTime;
- }
- /**
- * 设置:积分规则适用结束时间
- */
- public void setPointsEndTime(Date pointsEndTime) {
- this.pointsEndTime = pointsEndTime;
- }
- /**
- * 获取:积分规则适用结束时间
- */
- public Date getPointsEndTime() {
- return pointsEndTime;
- }
- /**
- * 设置:积分规则是否有效
- */
- public void setIsValid(String isValid) {
- this.isValid = isValid;
- }
- /**
- * 获取:积分规则是否有效
- */
- public String getIsValid() {
- return isValid;
- }
- /**
- * 设置:创建人编号
- */
- public void setCreaterSn(String createrSn) {
- this.createrSn = createrSn;
- }
- /**
- * 获取:创建人编号
- */
- public String getCreaterSn() {
- return createrSn;
- }
- /**
- * 设置:创建时间,yyyy-MM-dd HH:mm:ss
- */
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- /**
- * 获取:创建时间,yyyy-MM-dd HH:mm:ss
- */
- public Date getCreateTime() {
- return createTime;
- }
- /**
- * 设置:修改人编号
- */
- public void setModerSn(String moderSn) {
- this.moderSn = moderSn;
- }
- /**
- * 获取:修改人编号
- */
- public String getModerSn() {
- return moderSn;
- }
- /**
- * 设置:修改时间,yyyy-MM-dd HH:mm:ss
- */
- public void setModTime(Date modTime) {
- this.modTime = modTime;
- }
- /**
- * 获取:修改时间,yyyy-MM-dd HH:mm:ss
- */
- public Date getModTime() {
- return modTime;
- }
- /**
- * 设置:时间戳
- */
- public void setTstm(Date tstm) {
- this.tstm = tstm;
- }
- /**
- * 获取:时间戳
- */
- public Date getTstm() {
- return tstm;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public BigDecimal getPointsRulesMoney() {
- return pointsRulesMoney;
- }
- public void setPointsRulesMoney(BigDecimal pointsRulesMoney) {
- this.pointsRulesMoney = pointsRulesMoney;
- }
- public String getPointsRulesNum() {
- return pointsRulesNum;
- }
- public void setPointsRulesNum(String pointsRulesNum) {
- this.pointsRulesNum = pointsRulesNum;
- }
- public String getHandselIntegral() {
- return handselIntegral;
- }
- public void setHandselIntegral(String handselIntegral) {
- this.handselIntegral = handselIntegral;
- }
- public BigDecimal getPointsProportion() {
- return pointsProportion;
- }
- public void setPointsProportion(BigDecimal pointsProportion) {
- this.pointsProportion = pointsProportion;
- }
- public String getPointsTypeStr() {
- return pointsTypeStr;
- }
- public void setPointsTypeStr(String pointsTypeStr) {
- this.pointsTypeStr = pointsTypeStr;
- }
- }
|