Java Code Examples for org.jeecg.modules.system.entity.SysDepart#getCreateBy()

The following examples show how to use org.jeecg.modules.system.entity.SysDepart#getCreateBy() . 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 vote down vote up
/**
    * 将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 vote down vote up
/**
    * 将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 vote down vote up
/**
    * 将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 vote down vote up
/**
    * 将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();
   }