fhx
2024-07-25 ab886163b7291ef0de27cf8fad63eb80c5fc6107
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;
}