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";
|
|
/**
|
* 同步时间
|
*/
|
public static final String updateTime="update_time";
|
|
/**
|
* 是否同步
|
*/
|
public static final String isSynchron="is_synchron";
|
}
|
|
// 部门主键
|
private String deptId;
|
// 部门名称
|
private String deptName;
|
// 部门首字母
|
private String deptNameEn;
|
|
//同步时间
|
private String updateTime;
|
|
//是否同步
|
private String isSynchron;
|
|
|
public String getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(String updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getIsSynchron() {
|
return isSynchron;
|
}
|
|
public void setIsSynchron(String isSynchron) {
|
this.isSynchron = isSynchron;
|
}
|
|
/**
|
* 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
|
;
|
}
|
}
|