package cn.com.basic.face.discern.entity;
|
|
import java.io.Serializable;
|
|
import cn.com.basic.face.discern.common.BaseEntity;
|
|
/**
|
* Department
|
*/
|
public class Department extends BaseEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
public static final String MODEL_NAME = "Department";
|
|
public static final class FieldNames {
|
/**
|
* 部门主键
|
*/
|
public static final String deptId = "deptId";
|
/**
|
* 部门名称
|
*/
|
public static final String deptName = "deptName";
|
/**
|
* 部门首字母
|
*/
|
public static final String deptNameEn = "deptNameEn";
|
}
|
|
// 部门主键
|
private String deptId;
|
// 部门名称
|
private String deptName;
|
// 部门首字母
|
private String deptNameEn;
|
|
/**
|
* Get 部门主键
|
*/
|
public String getDeptId() {
|
return deptId;
|
}
|
|
/**
|
* Set 部门主键
|
*/
|
public void setDeptId(String deptId) {
|
this.deptId = deptId;
|
}
|
|
/**
|
* Get 部门名称
|
*/
|
public String getDeptName() {
|
return deptName;
|
}
|
|
/**
|
* Set 部门名称
|
*/
|
public void setDeptName(String deptName) {
|
this.deptName = deptName;
|
}
|
|
/**
|
* Get 部门首字母
|
*/
|
public String getDeptNameEn() {
|
return deptNameEn;
|
}
|
|
/**
|
* Set 部门首字母
|
*/
|
public void setDeptNameEn(String deptNameEn) {
|
this.deptNameEn = deptNameEn;
|
}
|
|
public String toString() {
|
return
|
",部门主键 =" + deptId + ",部门名称 =" + deptName + ",部门首字母 ="+ deptNameEn
|
;
|
}
|
}
|