rx
2024-05-09 cf2c63e5b5265f9af872c27dc79382623ab53bad
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;
}