adviceform.java~2~
来自「用户的注册 用户的登陆 发布用户的相关信息 浏览网站介绍的其他酒店的」· JAVA~2~ 代码 · 共 71 行
JAVA~2~
71 行
package domain;
public class AdviceForm {
private Integer id;
private Integer oid;
private String content;
private String time;
private Integer hotel;
private String contentment;
private String isReply;
public AdviceForm() {
}
public void setId(Integer id) {
this.id = id;
}
public void setOid(Integer oid) {
this.oid = oid;
}
public void setContent(String content) {
this.content = content;
}
public void setTime(String time) {
this.time = time;
}
public void setHotel(Integer hotel) {
this.hotel = hotel;
}
public void setContentment(String contentment) {
this.contentment = contentment;
}
public void setIsReply(String isReply) {
this.isReply = isReply;
}
public Integer getId() {
return id;
}
public Integer getOid() {
return oid;
}
public String getContent() {
return content;
}
public String getTime() {
return time;
}
public Integer getHotel() {
return hotel;
}
public String getContentment() {
return contentment;
}
public String getIsReply() {
return isReply;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?