fhx
2024-06-06 3c38c3f1f1900d5fc4f49e6ecd63fc7f3d5e861f
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;
}