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继承字段 -必填项****/
|
|
|
/**审核唯一标识 -必填项*/
|
private String uniqueId;
|
/**审核标题 -必填项*/
|
private String title;
|
/**审核类型 >1000的值 (参考m_application_subject,不可重复) -必填项*/
|
private Integer type;
|
/**审核类型唯一字符串*/
|
private String typeStr;
|
|
/**审批界面展示的内容 -必填项*/
|
private MarketingContentDto marketingContentDto;
|
|
/**消息发送内容 -必填项*/
|
private MarketingMsgDto marketingMsgDto;
|
|
/**回调链接 -必填项 回调参数参考MarCommonReturnDto*/
|
private String callbackUrl;
|
|
}
|