自动化立体仓库 - WCS系统
#
Junjie
6 天以前 d65679fefe52fc2bf2435825c65aec3a329e3b9e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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;
 
}