| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.happy.vo;
- import lombok.Data;
- @Data
- public class UsefulCouponVo {
- private String id; // 领取的优惠券主键
- private String complaintId; // 优惠券id
- private String hotelIds; // 适用民宿
- private String name; // 名称
- private Integer type; // 类型(1.优惠卷 2.折扣卷)
- private Double rebatePrice; // 折扣
- private Double deductionPrice; // 减免金额
- private Double maxDeduction; // 最大减免金额
- private Double meetPrice; // 满减金额
- private String effectiveEndDate; //有效期结束时间
- private String effectiveStartDate;//有效期开始时间
- private Integer effectiveType;//有效期类型(1.时间段 2.生效失效天数)
- private Integer effectiveDay;//生效时间天数
- private Integer effectiveLoseDay;//失效时间天数
- private String dateTime;//领券时间
- private String afterDate;
- private String beforDate;
- }
|