📄 department.java
字号:
package com.t60.oa.po;
import com.t60.oa.po.base.BaseDepartment;
/**
* This is the object class that relates to the Department table.
* Any customizations belong here.
*/
public class Department extends BaseDepartment {
/*[CONSTRUCTOR MARKER BEGIN]*/
public Department () {
super();
}
/**
* Constructor for primary key
*/
public Department (java.lang.String _id) {
super(_id);
}
/**
* Constructor for required fields
*/
public Department (
java.lang.String _id,
java.lang.String _depName) {
super (
_id,
_depName);
}
/*[CONSTRUCTOR MARKER END]*/
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -