123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- package com.kmall.admin.haikong.vo;
- import com.kmall.admin.dto.Mall2RulesDto;
- import com.kmall.admin.entity.vip.Mall2PointsRulesEntity;
- import java.math.BigDecimal;
- import java.util.Date;
- import java.util.List;
- /**
- * 积分生成规则及其明细
- * @author lhm
- * @createDate 2021-12-03
- */
- public class PointsRulesAndDetailVO {
- private Integer mprId;
- private Integer pointsType;
- private Date pointsBeginTime;
- private Date pointsEndTime;
- private String isValid;
- private BigDecimal ratio;
- private Integer id;
- private Integer fatherId;
- private String pointRulesType;
- private String pointsDetailName;
- private String pointsDetailNameId;
- private String pointsStoreName;
- private String pointsStoreId;
- private String remark;
- public Integer getMprId() {
- return mprId;
- }
- public void setMprId(Integer mprId) {
- this.mprId = mprId;
- }
- public Integer getPointsType() {
- return pointsType;
- }
- public void setPointsType(Integer pointsType) {
- this.pointsType = pointsType;
- }
- public Date getPointsBeginTime() {
- return pointsBeginTime;
- }
- public void setPointsBeginTime(Date pointsBeginTime) {
- this.pointsBeginTime = pointsBeginTime;
- }
- public Date getPointsEndTime() {
- return pointsEndTime;
- }
- public void setPointsEndTime(Date pointsEndTime) {
- this.pointsEndTime = pointsEndTime;
- }
- public String getIsValid() {
- return isValid;
- }
- public void setIsValid(String isValid) {
- this.isValid = isValid;
- }
- public BigDecimal getRatio() {
- return ratio;
- }
- public void setRatio(BigDecimal ratio) {
- this.ratio = ratio;
- }
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getFatherId() {
- return fatherId;
- }
- public void setFatherId(Integer fatherId) {
- this.fatherId = fatherId;
- }
- public String getPointRulesType() {
- return pointRulesType;
- }
- public void setPointRulesType(String pointRulesType) {
- this.pointRulesType = pointRulesType;
- }
- public String getPointsDetailName() {
- return pointsDetailName;
- }
- public void setPointsDetailName(String pointsDetailName) {
- this.pointsDetailName = pointsDetailName;
- }
- public String getPointsDetailNameId() {
- return pointsDetailNameId;
- }
- public void setPointsDetailNameId(String pointsDetailNameId) {
- this.pointsDetailNameId = pointsDetailNameId;
- }
- public String getPointsStoreName() {
- return pointsStoreName;
- }
- public void setPointsStoreName(String pointsStoreName) {
- this.pointsStoreName = pointsStoreName;
- }
- public String getPointsStoreId() {
- return pointsStoreId;
- }
- public void setPointsStoreId(String pointsStoreId) {
- this.pointsStoreId = pointsStoreId;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- @Override
- public String toString() {
- return "PointsRulesAndDetailVO{" +
- "mprId=" + mprId +
- ", pointsType='" + pointsType + '\'' +
- ", pointsBeginTime=" + pointsBeginTime +
- ", pointsEndTime=" + pointsEndTime +
- ", isValid='" + isValid + '\'' +
- ", ratio=" + ratio +
- ", id=" + id +
- ", fatherId=" + fatherId +
- ", pointRulesType='" + pointRulesType + '\'' +
- ", pointsDetailName='" + pointsDetailName + '\'' +
- ", pointsDetailNameId='" + pointsDetailNameId + '\'' +
- ", pointsStoreName='" + pointsStoreName + '\'' +
- ", pointsStoreId='" + pointsStoreId + '\'' +
- ", remark='" + remark + '\'' +
- '}';
- }
- }
|