UsefulCouponVo.java 963 B

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