1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.hz.his.dto.coupon;
|
| import com.hz.his.dto.PageDto;
| import lombok.Data;
|
| /**
| * 优惠券发送参数
| * @author fwq
| */
| @Data
| public class CouponTypeDto extends PageDto {
| /**是否营销助手可申请*/
| private Integer isMarketAssistantApply;
| /** 优惠券成本部门 */
| private String costDeptName;
| }
|
|