1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| package com.dsh.guns.modular.system.model;
|
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| import java.math.BigDecimal;
|
| @Data
| @ApiModel("会员权益优惠券返回VO")
| public class CouponVipVo {
| /**
| * 用户类型1=城市管理者 2=平台管理者
| */
| @ApiModelProperty("优惠券id")
| Integer userType;
| /**
| * 城市管理者id
| */
| Integer cityManagerId;
| /**
| * 券名称
| */
| String couponName;
| /**
| * 优惠券类型
| */
| Integer prescription;
| /**
| * 条件金额
| */
| BigDecimal condition;
| /**
| * 减去金额
| */
| BigDecimal subtraction;
| /**
| * 折扣金额
| */
| BigDecimal discount;
|
| }
|
|