MailBean.java
1.57 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
package com.wd.foundation.bean.message;
public class MailBean {
/**
* 系统消息未读数
*/
private int systemCount;
/**
* 预约消息未读数
*/
private int subscribeCount;
/**
* 互动消息未读数
*/
private int activeCount;
/**
* 预约消息信息
*/
private MailDetailBean subscribeInfo;
/**
* 系统通知
*/
private MailDetailBean systemInfo;
/**
* 互动消息
*/
private MailDetailBean activeInfo;
public int getSystemCount() {
return systemCount;
}
public void setSystemCount(int systemCount) {
this.systemCount = systemCount;
}
public int getSubscribeCount() {
return subscribeCount;
}
public void setSubscribeCount(int subscribeCount) {
this.subscribeCount = subscribeCount;
}
public int getActiveCount() {
return activeCount;
}
public void setActiveCount(int activeCount) {
this.activeCount = activeCount;
}
public MailDetailBean getSubscribeInfo() {
return subscribeInfo;
}
public void setSubscribeInfo(MailDetailBean subscribeInfo) {
this.subscribeInfo = subscribeInfo;
}
public MailDetailBean getSystemInfo() {
return systemInfo;
}
public void setSystemInfo(MailDetailBean systemInfo) {
this.systemInfo = systemInfo;
}
public MailDetailBean getActiveInfo() {
return activeInfo;
}
public void setActiveInfo(MailDetailBean activeInfo) {
this.activeInfo = activeInfo;
}
}