提交 | 用户 | age
|
d3af5b
|
1 |
package com.hz.his.dto.coupon; |
R |
2 |
|
|
3 |
import com.hz.his.dto.PageDto; |
|
4 |
import lombok.Data; |
|
5 |
|
4288fa
|
6 |
import java.math.BigDecimal; |
d3af5b
|
7 |
import java.util.List; |
R |
8 |
|
|
9 |
/** |
|
10 |
* 优惠券新增参数 |
|
11 |
*/ |
|
12 |
@Data |
|
13 |
public class CouponAddDto extends PageDto { |
|
14 |
/**优惠券标题 */ |
|
15 |
private String title; |
|
16 |
/**申请类型**/ |
f378c0
|
17 |
private String type; |
924207
|
18 |
/**指定项目 或者 通用项目 类型 0=指定 1=通用 **/ |
4288fa
|
19 |
private Integer useProjectType; |
d3af5b
|
20 |
/**指定项目 或者 通用项目 ID,name **/ |
f378c0
|
21 |
private List<CouponProjectDto> serviceIds; |
d3af5b
|
22 |
/**门店ID*/ |
R |
23 |
private String shopId; |
4288fa
|
24 |
/**累计申请数量*/ |
R |
25 |
private Integer applyNum; |
|
26 |
/**累计申请金额*/ |
|
27 |
private BigDecimal applyAmount; |
47761c
|
28 |
/**优惠券成本部门编号 格式 ["CDT20230816WTAu"] */ |
R |
29 |
private String costDepartmentCode; |
|
30 |
/** 优惠券成本部门 多个*/ |
|
31 |
private List<Object> costDeptListArr; |
d3af5b
|
32 |
} |