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
  | package com.zy.asrs.domain; 
 |    
 |  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 Integer failTimes = 3; 
 |    
 |      //重试次数 
 |      private Integer retryTimes = 0; 
 |    
 |      //重试间隔默认30s 
 |      private Integer retryTime = 30; 
 |    
 |      //上次重试时间 
 |      private Long lastRetryTime = 0L; 
 |    
 |  } 
 |  
  |