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; } }