CardCouponPageVo.java 839 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.happy.vo;
  2. import lombok.Data;
  3. @Data
  4. public class CardCouponPageVo {
  5. private String id; // 主键
  6. private String hotelIds; // 适用民宿
  7. private String name; // 名称
  8. private Integer type; // 类型(1.优惠卷 2.折扣卷)
  9. private Double rebatePrice; // 折扣
  10. private Double deductionPrice; // 减免金额
  11. private Double maxDeduction; // 最大减免金额
  12. private Double meetPrice; // 满减金额
  13. private String effectiveEndDate; //有效期结束时间
  14. private String effectiveStartDate;//有效期开始时间
  15. private Integer effectiveType;//有效期类型(1.时间段 2.生效失效天数)
  16. private Integer effectiveDay;//生效时间天数
  17. private Integer effectiveLoseDay;//失效时间天数
  18. private String dateTime;//领券时间
  19. }