📄 institution.java
字号:
package com.bOS.bPRO_PersonManage.en;
import java.io.Serializable;
import java.util.Date;
/** 奖惩 */
public class Institution implements Serializable {
/** identifier field */
private Long id;
/** nullable persistent field */
private String name;
/** 原因 */
private String reason;
/** 说明 */
private String explain;
/** nullable persistent field */
private Date createtime;
/** full constructor */
public Institution(String name, String reason, String explain, Date createtime) {
this.name = name;
this.reason = reason;
this.explain = explain;
this.createtime = createtime;
}
/** default constructor */
public Institution() {
}
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 getReason() {
return this.reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getExplain() {
return this.explain;
}
public void setExplain(String explain) {
this.explain = explain;
}
public Date getCreatetime() {
return this.createtime;
}
public void setCreatetime(Date createtime) {
this.createtime = createtime;
}
public String toString() {
StringBuffer toStr = new StringBuffer();
toStr.append("[Institution] = [\n");
toStr.append(" id = " + this.id + ";\n");
toStr.append(" name = " + this.name + ";\n");
toStr.append(" reason = " + this.reason + ";\n");
toStr.append(" createtime = " + this.createtime+ ";\n");
toStr.append(" explain = " + this.explain + ";\n");
toStr.append(" ];\n");
return toStr.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -