You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.java3y.austin.pojo;
import lombok.Builder;
import lombok.Data;
import java.util.Set;
/**
* 发送任务信息
*/
@Data
@Builder
public class TaskInfo {
/**
* 消息模板Id
*/
private Long messageTemplateId;
/**
* 业务Id
*/
private Long businessId;
/**
* 接收者
*/
private Set<String> receiver;
/**
* 发送的Id类型
*/
private Integer idType;
/**
* 发送渠道
*/
private Integer sendChannel;
/**
* 模板类型
*/
private Integer templateType;
/**
* 消息类型
*/
private Integer msgType;
/**
* 发送文案内容
*/
private String content;
/**
* 发送账号(邮件下可有多个发送账号、短信可有多个发送账号..
*/
private Integer sendAccount;
/**
* 消息去重时间 单位小时
*/
private Integer deduplicationTime;
/**
* 是否夜间屏蔽
* 0:不屏蔽
* 1屏蔽
*/
private Integer isNightShield;
}