📄 dept.java
字号:
package com.hr.vo;
/**
* @hibernate.class
* table="T_Dept"
*
*/
public class Dept {
private Long deptUID;
private String deptName;
private String note;
public Dept() {
}
/**
* @hibernate.id
* column="DeptUID"
* generator-class="hilo"
* unsaved-value="null"
*/
public Long getDeptUID() {
return deptUID;
}
public void setDeptUID(Long deptUID) {
this.deptUID = deptUID;
}
/**
* @hibernate.property
* column="DeptName"
*/
public String getDeptName() {
return deptName;
}
public void setDeptName(String deptName) {
this.deptName = deptName;
}
/**
* @hibernate.property
* column="Note"
*/
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -