hotelnoticeform.java
来自「用户的注册 用户的登陆 发布用户的相关信息 浏览网站介绍的其他酒店的」· Java 代码 · 共 53 行
JAVA
53 行
package domain;
public class HotelNoticeForm {
private Integer id;
private Integer eid;
private String title;
private String content;
private String time;
public HotelNoticeForm() {
}
public void setId(Integer id) {
this.id = id;
}
public void setEid(Integer eid) {
this.eid = eid;
}
public void setTitle(String title) {
this.title = title;
}
public void setContent(String content) {
this.content = content;
}
public void setTime(String time) {
this.time = time;
}
public Integer getId() {
return id;
}
public Integer getEid() {
return eid;
}
public String getTitle() {
return title;
}
public String getContent() {
return content;
}
public String getTime() {
return time;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?