cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package cn.ksource.web.service.sl.sla;
 
public class NoticeUser {
 
    //超时时间
    private String overTime;
    
    //通知类型 1:响应超时通知 2:解决超通知
    private String noticeType;
    
    //通知人员类型 1:分组 2:指定人员
    private String dealerType;
    
    //通知人员编号
    private String userId;
    //通知人员名称
    private String userName;
    //通知分组编号
    private String groupId;
    //通知分组名称
    private String groupName;
    
    
    public String getOverTime() {
        return overTime;
    }
    public void setOverTime(String overTime) {
        this.overTime = overTime;
    }
    public String getNoticeType() {
        return noticeType;
    }
    public void setNoticeType(String noticeType) {
        this.noticeType = noticeType;
    }
    public String getDealerType() {
        return dealerType;
    }
    public void setDealerType(String dealerType) {
        this.dealerType = dealerType;
    }
    public String getUserId() {
        return userId;
    }
    public void setUserId(String userId) {
        this.userId = userId;
    }
    public String getUserName() {
        return userName;
    }
    public void setUserName(String userName) {
        this.userName = userName;
    }
    public String getGroupId() {
        return groupId;
    }
    public void setGroupId(String groupId) {
        this.groupId = groupId;
    }
    public String getGroupName() {
        return groupName;
    }
    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }
}