package com.hz.his.dto.marketing.common;
|
|
import com.hz.his.dto.marketing.MarketingDto;
|
import lombok.Data;
|
|
/**
|
* 营销助手请求公共参数
|
* @author fwq
|
*/
|
@Data
|
public class MarketingTotalDto extends MarketingDto {
|
|
/******MarketingDto继承字段 -必填项****/
|
|
/**审核类型 >20的值*/
|
private Integer type;
|
/**审核唯一标识*/
|
private String uniqueId;
|
|
/**审批界面展示的内容 -必填项*/
|
private MarketingContentDto marketingContentDto;
|
|
/**消息发送内容 -必填项*/
|
private MarketingMsgDto marketingMsgDto;
|
|
/**回调链接 -必填项 回调传参*/
|
private String callbackUrl;
|
|
}
|