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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
package com.hmit.kernes.entity;
import java.util.Date;
import java.util.List;
public class AppAnnounceEntity {
private Long id;
private int type;
private Long unionId;
private Date postTime;
private String actName;
private String actAddress;
private String fileSrc;
private Date updateTime;
private String makerName;
private String makerTel;
private String actDetail;
private Integer isShow;
private String dictA;
private String dictANickname;
private String dictB;
private String dictBNickname;
private String dictC;
private String dictCNickname;
public Integer getIsShow() {
return isShow;
}
public void setIsShow(Integer isShow) {
this.isShow = isShow;
}
public String getDictA() {
return dictA;
}
public void setDictA(String dictA) {
this.dictA = dictA;
}
public String getDictANickname() {
return dictANickname;
}
public void setDictANickname(String dictANickname) {
this.dictANickname = dictANickname;
}
public String getDictB() {
return dictB;
}
public void setDictB(String dictB) {
this.dictB = dictB;
}
public String getDictBNickname() {
return dictBNickname;
}
public void setDictBNickname(String dictBNickname) {
this.dictBNickname = dictBNickname;
}
public String getDictC() {
return dictC;
}
public void setDictC(String dictC) {
this.dictC = dictC;
}
public String getDictCNickname() {
return dictCNickname;
}
public void setDictCNickname(String dictCNickname) {
this.dictCNickname = dictCNickname;
}
private List<AppAnnounceMapEntity> list;
public List<AppAnnounceMapEntity> getList() {
return list;
}
public String getActAddress() {
return actAddress;
}
public void setActAddress(String actAddress) {
this.actAddress = actAddress;
}
public String getActDetail() {
return actDetail;
}
public void setActDetail(String actDetail) {
this.actDetail = actDetail;
}
public void setList(List<AppAnnounceMapEntity> list) {
this.list = list;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public Long getUnionId() {
return unionId;
}
public void setUnionId(Long unionId) {
this.unionId = unionId;
}
public Date getPostTime() {
return postTime;
}
public void setPostTime(Date postTime) {
this.postTime = postTime;
}
public String getActName() {
return actName;
}
public void setActName(String actName) {
this.actName = actName;
}
public String getFileSrc() {
return fileSrc;
}
public void setFileSrc(String fileSrc) {
this.fileSrc = fileSrc;
}
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
public String getMakerName() {
return makerName;
}
public void setMakerName(String makerName) {
this.makerName = makerName;
}
public String getMakerTel() {
return makerTel;
}
public void setMakerTel(String makerTel) {
this.makerTel = makerTel;
}
}