📄 educate.java
字号:
package com.bOS.bPRO_PersonManage.en;
import java.io.Serializable;
import java.util.Date;
/** 培训 */
public class Educate implements Serializable {
/** identifier field */
private Long id;
/** nullable persistent field */
private String name;
/** 培训目的 */
private String purpose;
/** nullable persistent field */
private Date begintime;
/** nullable persistent field */
private Date endtime;
/** 培训材料 */
private String datum;
/** 讲师 */
private String teacher;
/** 培训人员 */
private String student;
/** nullable persistent field */
private Date createtime;
/** 培训是否完成 */
private Byte educate;
/** 培训效果 */
private String effect;
/** 总结 */
private String summarize;
/** full constructor */
public Educate(String name, String purpose, Date begintime, Date endtime, String datum, String teacher, String student, Date createtime, Byte educate,String effect, String summarize) {
this.name = name;
this.purpose = purpose;
this.begintime = begintime;
this.endtime = endtime;
this.datum = datum;
this.teacher = teacher;
this.student = student;
this.createtime = createtime;
this.educate=educate;
this.effect = effect;
this.summarize = summarize;
}
/** default constructor */
public Educate() {
}
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getPurpose() {
return this.purpose;
}
public void setPurpose(String purpose) {
this.purpose = purpose;
}
public Date getBegintime() {
return this.begintime;
}
public void setBegintime(Date begintime) {
this.begintime = begintime;
}
public Date getEndtime() {
return this.endtime;
}
public void setEndtime(Date endtime) {
this.endtime = endtime;
}
public String getDatum() {
return this.datum;
}
public void setDatum(String datum) {
this.datum = datum;
}
public String getTeacher() {
return this.teacher;
}
public void setTeacher(String teacher) {
this.teacher = teacher;
}
public String getStudent() {
return this.student;
}
public void setStudent(String student) {
this.student = student;
}
public Date getCreatetime() {
return this.createtime;
}
public void setCreatetime(Date createtime) {
this.createtime = createtime;
}
public String getEffect() {
return this.effect;
}
public void setEffect(String effect) {
this.effect = effect;
}
public String getSummarize() {
return this.summarize;
}
public void setSummarize(String summarize) {
this.summarize = summarize;
}
public String toString() {
StringBuffer toStr = new StringBuffer();
toStr.append("[Educate] = [\n");
toStr.append(" id = " + this.id + ";\n");
toStr.append(" name = " + this.name + ";\n");
toStr.append(" begintime = " + this.begintime+ ";\n");
toStr.append(" endtime = " + this.endtime+ ";\n");
toStr.append(" createtime = " + this.createtime+ ";\n");
toStr.append(" purpose = " + this.purpose + ";\n");
toStr.append(" datum = " + this.datum + ";\n");
toStr.append(" teacher = " + this.teacher + ";\n");
toStr.append(" student = " + this.student + ";\n");
toStr.append(" educate = " + this.educate+ ";\n");
toStr.append(" effect = " + this.effect + ";\n");
toStr.append(" summarize = " + this.summarize + ";\n");
toStr.append(" ];\n");
return toStr.toString();
}
/**
* @return Returns the educate.
*/
public Byte getEducate() {
return educate;
}
/**
* @param educate The educate to set.
*/
public void setEducate(Byte educate) {
this.educate = educate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -