package com.zy.asrs.domain.dto;
|
|
import lombok.Data;
|
|
@Data
|
public class NotifyDto {
|
|
private Long id;
|
|
//通知类型
|
private String notifyType;
|
|
//设备号
|
private Integer device;
|
|
//工作号
|
private String taskNo;
|
|
//上级系统工作号
|
private String superTaskNo;
|
|
//消息类型
|
private String msgType;
|
|
//消息描述
|
private String msgDesc;
|
|
//消息数据
|
private String data;
|
|
//发送自定义消息数据,默认标准格式
|
private Boolean sendCustomData = false;
|
|
//自定义消息数据格式
|
private NotifyCustomDataDto customData;
|
|
//失败重试次数
|
private Integer failTimes = 3;
|
|
//重试次数
|
private Integer retryTimes = 0;
|
|
//重试间隔默认30s
|
private Integer retryTime = 30;
|
|
//上次重试时间
|
private Long lastRetryTime = 0L;
|
|
}
|