📄 conference.java
字号:
package com.oa.db;
/**
* Conference generated by MyEclipse - Hibernate Tools
*/
public class Conference implements java.io.Serializable {
// Fields
private Integer id;
private String topic;
private String condate;
private String content;
private String compere;
private String actor;
private String remark;
// Constructors
/** default constructor */
public Conference() {
}
/** full constructor */
public Conference(String topic, String condate, String content, String compere, String actor, String remark) {
this.topic = topic;
this.condate = condate;
this.content = content;
this.compere = compere;
this.actor = actor;
this.remark = remark;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getCondate() {
return this.condate;
}
public void setCondate(String condate) {
this.condate = condate;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getCompere() {
return this.compere;
}
public void setCompere(String compere) {
this.compere = compere;
}
public String getActor() {
return this.actor;
}
public void setActor(String actor) {
this.actor = actor;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -