package cn.com.basic.face.discern.entity; import java.io.Serializable; import cn.com.basic.face.discern.common.BaseEntity; /** * 向下 */ 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 companyId = "companyId"; /** * 同步时间 */ public static final String updateTime = "updateTime"; /** * 是否同步 */ public static final String isSynchron = "isSynchron"; /** * 设备所在机构id */ public static final String deviceCompanyId = "deviceCompanyId"; } // 部门主键 private String deptId; // 部门名称 private String deptName; // 部门首字母 private String deptNameEn; // 所在公司 private String companyId; // 同步时间 private String updateTime; // 是否同步 private String isSynchron; // 设备所在机构id private String deviceCompanyId; private String isValid; private String createTime; public String getIsValid() { return isValid; } public void setIsValid(String isValid) { this.isValid = isValid; } public String getCreateTime() { return createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } /** * 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; } /** * Get 所在公司 */ public String getCompanyId() { return companyId; } /** * Set 所在公司 */ public void setCompanyId(String companyId) { this.companyId = companyId; } /** * Get 同步时间 */ public String getUpdateTime() { return updateTime; } /** * Set 同步时间 */ public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } /** * Get 是否同步 * ,Y--已同步,N--未同步 */ public String getIsSynchron() { return isSynchron; } /** * Set 是否同步 * ,Y--已同步,N--未同步 */ public void setIsSynchron(String isSynchron) { this.isSynchron = isSynchron; } /** * Get 设备所在机构id */ public String getDeviceCompanyId() { return deviceCompanyId; } /** * Set 设备所在机构id */ public void setDeviceCompanyId(String deviceCompanyId) { this.deviceCompanyId = deviceCompanyId; } public String toString() { return ",部门主键 =" + deptId + ",部门名称 =" + deptName + ",部门首字母 ="+ deptNameEn + ",所在公司 =" + companyId + ",同步时间 =" + updateTime + ",是否同步 =" + isSynchron + ",设备所在机构id ="+ deviceCompanyId; } }