Mall2RulesDto.java 688 B

123456789101112131415161718192021222324252627
  1. package com.kmall.admin.dto;
  2. import lombok.Data;
  3. @Data
  4. public class Mall2RulesDto {
  5. private Integer id;
  6. //父类ID
  7. private Long mkaId;
  8. //积分类型
  9. private String rulesType;
  10. //积分生成规则Name(门店,商品类别,商品)
  11. private String pointsRulesName;
  12. //积分生成规则分类id(门店,商品类别,商品)
  13. private Integer pointsRulesType;
  14. //门店ID,商品ID,商品分类ID
  15. private Long rulesId;
  16. //商品门店名称
  17. private String storeName;
  18. //当导入商品时,对应的商品门店ID
  19. private Long storeId;
  20. //条码
  21. // private String barcode;
  22. // //备注
  23. // private String remark;
  24. }