对比新文件 |
| | |
| | | package com.mzl.flower.dto.request.coupon; |
| | | |
| | | import com.mzl.flower.base.annotation.DictTrans; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | |
| | | @Data |
| | | public class QueryActivePointCouponDTO{ |
| | | |
| | | @ApiModelProperty(value = "排序列 point desc / create_time desc,默认 create_time desc",hidden = true) |
| | | private String orderStr; |
| | | |
| | | @ApiModelProperty(value = "积分最小值") |
| | | private Integer minPoint; |
| | | |
| | | @ApiModelProperty(value = "积分最大值") |
| | | private Integer maxPoint; |
| | | |
| | | @ApiModelProperty(value = "优惠券种类",hidden = true) |
| | | private String category; |
| | | |
| | | @ApiModelProperty(value = "优惠券状态",hidden = true) |
| | | private String status; |
| | | |
| | | /** |
| | | * 领取后有效类型(COUPON_usage_time_type)天、小时、分钟 |
| | | */ |
| | | @ApiModelProperty(value = "领取后有效类型(COUPON_USAGE_TIME_TYPE)") |
| | | @DictTrans(target = "usageTimeTypeName",codeType = "COUPON_USAGE_TIME_TYPE") |
| | | private String usageTimeType; |
| | | |
| | | /** |
| | | * 领取后有效时间整数,比如90(天,小时,分钟) |
| | | */ |
| | | @ApiModelProperty(value = "领取后有效时间整数") |
| | | private Integer usageTimeNum; |
| | | |
| | | |
| | | } |