cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
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
181
182
183
184
185
186
187
package cn.ksource.web.entity.message;
 
import java.util.List;
import java.util.Map;
 
import cn.ksource.core.dao.SqlParameter;
 
public class CmsNews {
 
    private int id;                         
    private int categoryId;
    private String title;
    private String createTime;
    private String createDepartment;
    private int thetop;
    private String summary;
    private String content;
    private String theurl;
    private String titleimageurl;
    private List<SqlParameter> listAttachMents;
    private String deleAttachment;
    private int shenpiStatus;
    private String shenpiPeopleId;
    private String shenpiPeople;
    private String shenpiTime;
    private Integer isreport;
    private String reportId;
    private String comment;
    private String timeout;
    private String mainPeopleId;
    private String mainPeopleName;
    private String shoot_id;
    private String shoot_name;
    private int show_num;
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public int getCategoryId() {
        return categoryId;
    }
    public void setCategoryId(int categoryId) {
        this.categoryId = categoryId;
    }
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
    public String getCreateTime() {
        return createTime;
    }
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
    public String getCreateDepartment() {
        return createDepartment;
    }
    public void setCreateDepartment(String createDepartment) {
        this.createDepartment = createDepartment;
    }
    public int getThetop() {
        return thetop;
    }
    public void setThetop(int thetop) {
        this.thetop = thetop;
    }
    public String getSummary() {
        return summary;
    }
    public void setSummary(String summary) {
        this.summary = summary;
    }
    public String getContent() {
        return content;
    }
    public void setContent(String content) {
        this.content = content;
    }
    public String getTheurl() {
        return theurl;
    }
    public void setTheurl(String theurl) {
        this.theurl = theurl;
    }
    public String getTitleimageurl() {
        return titleimageurl;
    }
    public void setTitleimageurl(String titleimageurl) {
        this.titleimageurl = titleimageurl;
    }
    public List<SqlParameter> getListAttachMents() {
        return listAttachMents;
    }
    public void setListAttachMents(List<SqlParameter> listAttachMents) {
        this.listAttachMents = listAttachMents;
    }
    public String getDeleAttachment() {
        return deleAttachment;
    }
    public void setDeleAttachment(String deleAttachment) {
        this.deleAttachment = deleAttachment;
    }
    
    public String getShenpiPeopleId() {
        return shenpiPeopleId;
    }
    public void setShenpiPeopleId(String shenpiPeopleId) {
        this.shenpiPeopleId = shenpiPeopleId;
    }
    public String getShenpiPeople() {
        return shenpiPeople;
    }
    public void setShenpiPeople(String shenpiPeople) {
        this.shenpiPeople = shenpiPeople;
    }
    public String getShenpiTime() {
        return shenpiTime;
    }
    public void setShenpiTime(String shenpiTime) {
        this.shenpiTime = shenpiTime;
    }
    public String getReportId() {
        return reportId;
    }
    public void setReportId(String reportId) {
        this.reportId = reportId;
    }
    public String getComment() {
        return comment;
    }
    public void setComment(String comment) {
        this.comment = comment;
    }
    public int getShenpiStatus() {
        return shenpiStatus;
    }
    public void setShenpiStatus(int shenpiStatus) {
        this.shenpiStatus = shenpiStatus;
    }
    public Integer getIsreport() {
        return isreport;
    }
    public void setIsreport(Integer isreport) {
        this.isreport = isreport;
    }
    public String getTimeout() {
        return timeout;
    }
    public void setTimeout(String timeout) {
        this.timeout = timeout;
    }
    public String getMainPeopleId() {
        return mainPeopleId;
    }
    public void setMainPeopleId(String mainPeopleId) {
        this.mainPeopleId = mainPeopleId;
    }
    public String getMainPeopleName() {
        return mainPeopleName;
    }
    public void setMainPeopleName(String mainPeopleName) {
        this.mainPeopleName = mainPeopleName;
    }
    public String getShoot_id() {
        return shoot_id;
    }
    public void setShoot_id(String shoot_id) {
        this.shoot_id = shoot_id;
    }
    public String getShoot_name() {
        return shoot_name;
    }
    public void setShoot_name(String shoot_name) {
        this.shoot_name = shoot_name;
    }
    public int getShow_num() {
        return show_num;
    }
    public void setShow_num(int show_num) {
        this.show_num = show_num;
    }
    
}