?? institution.java
字號(hào):
package com.bOS.bPRO_PersonManage.en;
import java.io.Serializable;
import java.util.Date;
/** 獎(jiǎng)懲 */
public class Institution implements Serializable {
/** identifier field */
private Long id;
/** nullable persistent field */
private String name;
/** 原因 */
private String reason;
/** 說(shuō)明 */
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();
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -