news.java
来自「企业宣传网 用JSP+SQLSERVER开发 商品展示 在线聊天 留言板 」· Java 代码 · 共 42 行
JAVA
42 行
package com.accpedu.LHcompany.entity;
public class news {
private int newsID;
private String title;
private String content;
private String writerDate;
public int getNewsID() {
return newsID;
}
public void setNewsID(int newsID) {
this.newsID = newsID;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getWriterDate() {
return writerDate;
}
public void setWriterDate(String writerDate) {
this.writerDate = writerDate;
}
public news(int newsID, String title, String content, String writerDate) {
this.newsID = newsID;
this.title = title;
this.content = content;
this.writerDate = writerDate;
}
public news(){}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?