Java Code Examples for org.jeecg.modules.system.entity.SysDepart#getDepartName()
The following examples show how to use
org.jeecg.modules.system.entity.SysDepart#getDepartName() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SysDepartTreeModel.java From jeecg-cloud with Apache License 2.0 | 6 votes |
/** * 将SysDepart对象转换成SysDepartTreeModel对象 * @param sysDepart */ public SysDepartTreeModel(SysDepart sysDepart) { this.key = sysDepart.getId(); this.value = sysDepart.getId(); this.title = sysDepart.getDepartName(); this.id = sysDepart.getId(); this.parentId = sysDepart.getParentId(); this.departName = sysDepart.getDepartName(); this.departNameEn = sysDepart.getDepartNameEn(); this.departNameAbbr = sysDepart.getDepartNameAbbr(); this.departOrder = sysDepart.getDepartOrder(); this.description = sysDepart.getDescription(); this.orgCategory = sysDepart.getOrgCategory(); this.orgType = sysDepart.getOrgType(); this.orgCode = sysDepart.getOrgCode(); this.mobile = sysDepart.getMobile(); this.fax = sysDepart.getFax(); this.address = sysDepart.getAddress(); this.memo = sysDepart.getMemo(); this.status = sysDepart.getStatus(); this.delFlag = sysDepart.getDelFlag(); this.createBy = sysDepart.getCreateBy(); this.createTime = sysDepart.getCreateTime(); this.updateBy = sysDepart.getUpdateBy(); this.updateTime = sysDepart.getUpdateTime(); }
Example 2
Source File: SysDepartTreeModel.java From jeecg-boot-with-activiti with MIT License | 6 votes |
/** * 将SysDepart对象转换成SysDepartTreeModel对象 * @param sysDepart */ public SysDepartTreeModel(SysDepart sysDepart) { this.key = sysDepart.getId(); this.value = sysDepart.getId(); this.title = sysDepart.getDepartName(); this.id = sysDepart.getId(); this.parentId = sysDepart.getParentId(); this.departName = sysDepart.getDepartName(); this.departNameEn = sysDepart.getDepartNameEn(); this.departNameAbbr = sysDepart.getDepartNameAbbr(); this.departOrder = sysDepart.getDepartOrder(); this.description = sysDepart.getDescription(); this.orgCategory = sysDepart.getOrgCategory(); this.orgType = sysDepart.getOrgType(); this.orgCode = sysDepart.getOrgCode(); this.mobile = sysDepart.getMobile(); this.fax = sysDepart.getFax(); this.address = sysDepart.getAddress(); this.memo = sysDepart.getMemo(); this.status = sysDepart.getStatus(); this.delFlag = sysDepart.getDelFlag(); this.createBy = sysDepart.getCreateBy(); this.createTime = sysDepart.getCreateTime(); this.updateBy = sysDepart.getUpdateBy(); this.updateTime = sysDepart.getUpdateTime(); }
Example 3
Source File: SysDepartTreeModel.java From teaching with Apache License 2.0 | 6 votes |
/** * 将SysDepart对象转换成SysDepartTreeModel对象 * @param sysDepart */ public SysDepartTreeModel(SysDepart sysDepart) { this.key = sysDepart.getId(); this.value = sysDepart.getId(); this.title = sysDepart.getDepartName(); this.id = sysDepart.getId(); this.parentId = sysDepart.getParentId(); this.departName = sysDepart.getDepartName(); this.departNameEn = sysDepart.getDepartNameEn(); this.departNameAbbr = sysDepart.getDepartNameAbbr(); this.departOrder = sysDepart.getDepartOrder(); this.description = sysDepart.getDescription(); this.orgCategory = sysDepart.getOrgCategory(); this.orgType = sysDepart.getOrgType(); this.orgCode = sysDepart.getOrgCode(); this.mobile = sysDepart.getMobile(); this.fax = sysDepart.getFax(); this.address = sysDepart.getAddress(); this.memo = sysDepart.getMemo(); this.status = sysDepart.getStatus(); this.delFlag = sysDepart.getDelFlag(); this.createBy = sysDepart.getCreateBy(); this.createTime = sysDepart.getCreateTime(); this.updateBy = sysDepart.getUpdateBy(); this.updateTime = sysDepart.getUpdateTime(); }
Example 4
Source File: SysDepartTreeModel.java From jeecg-boot with Apache License 2.0 | 6 votes |
/** * 将SysDepart对象转换成SysDepartTreeModel对象 * @param sysDepart */ public SysDepartTreeModel(SysDepart sysDepart) { this.key = sysDepart.getId(); this.value = sysDepart.getId(); this.title = sysDepart.getDepartName(); this.id = sysDepart.getId(); this.parentId = sysDepart.getParentId(); this.departName = sysDepart.getDepartName(); this.departNameEn = sysDepart.getDepartNameEn(); this.departNameAbbr = sysDepart.getDepartNameAbbr(); this.departOrder = sysDepart.getDepartOrder(); this.description = sysDepart.getDescription(); this.orgCategory = sysDepart.getOrgCategory(); this.orgType = sysDepart.getOrgType(); this.orgCode = sysDepart.getOrgCode(); this.mobile = sysDepart.getMobile(); this.fax = sysDepart.getFax(); this.address = sysDepart.getAddress(); this.memo = sysDepart.getMemo(); this.status = sysDepart.getStatus(); this.delFlag = sysDepart.getDelFlag(); this.createBy = sysDepart.getCreateBy(); this.createTime = sysDepart.getCreateTime(); this.updateBy = sysDepart.getUpdateBy(); this.updateTime = sysDepart.getUpdateTime(); }
Example 5
Source File: DepartIdModel.java From jeecg-cloud with Apache License 2.0 | 5 votes |
/** * 该方法为用户部门的实现类所使用 * @param sysDepart * @return */ public DepartIdModel convertByUserDepart(SysDepart sysDepart) { this.key = sysDepart.getId(); this.value = sysDepart.getId(); this.title = sysDepart.getDepartName(); return this; }
Example 6
Source File: DepartIdModel.java From jeecg-boot-with-activiti with MIT License | 5 votes |
/** * 该方法为用户部门的实现类所使用 * @param sysDepart * @return */ public DepartIdModel convertByUserDepart(SysDepart sysDepart) { this.key = sysDepart.getId(); this.value = sysDepart.getId(); this.title = sysDepart.getDepartName(); return this; }
Example 7
Source File: DepartIdModel.java From teaching with Apache License 2.0 | 5 votes |
/** * 该方法为用户部门的实现类所使用 * @param sysDepart * @return */ public DepartIdModel convertByUserDepart(SysDepart sysDepart) { this.key = sysDepart.getId(); this.value = sysDepart.getId(); this.title = sysDepart.getDepartName(); return this; }
Example 8
Source File: DepartIdModel.java From jeecg-boot with Apache License 2.0 | 5 votes |
/** * 该方法为用户部门的实现类所使用 * @param sysDepart * @return */ public DepartIdModel convertByUserDepart(SysDepart sysDepart) { this.key = sysDepart.getId(); this.value = sysDepart.getId(); this.title = sysDepart.getDepartName(); return this; }