package com.app.bean; public class News { private Integer id; private String title; private String content; private String publishdate; private String author; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title == null ? null : title.trim(); } public String getContent() { return content; } public void setContent(String content) { this.content = content == null ? null : content.trim(); } public String getPublishdate() { return publishdate; } public void setPublishdate(String publishdate) { this.publishdate = publishdate == null ? null : publishdate.trim(); } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author == null ? null : author.trim(); } }

zolscy LV24
2024年11月26日
cjqing000103 LV4
2024年11月5日
lyt010628 LV4
2024年7月9日
yinfei305 LV2
2024年6月19日
wanglinddad LV55
2024年3月25日
xiaopengzep LV1
2024年3月15日
xiaojie93 LV2
2024年3月6日
noronoa LV9
2023年9月22日
186092 LV4
2023年9月19日
a347863302 LV6
2023年8月21日