| | |
| | | package com.jilongda.manage.vo; |
| | | |
| | | import com.jilongda.manage.model.TAppUser; |
| | | import com.jilongda.manage.model.TCoupon; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel(value = "优惠券详情VO") |
| | |
| | | private Integer grantCout; |
| | | @ApiModelProperty(value = "使用数量") |
| | | private Integer useCount; |
| | | |
| | | |
| | | @ApiModelProperty(value = "总计使用金额") |
| | | private BigDecimal useMoney; |
| | | @ApiModelProperty(value = "指定发放-用户ids") |
| | | private List<Integer> userIds; |
| | | @ApiModelProperty(value = "指定发放-用户列表") |
| | | private List<TAppUser> userList; |
| | | |
| | | } |