Package com.google.code.lightssh.project.party.service

Examples of com.google.code.lightssh.project.party.service.EmployeeManager


 
  /**
   * 查询人事信息
   */
  public static Employee getEmployee(String party_id ){
    EmployeeManager mgr = (EmployeeManager)SpringContextHelper.getBean( BEAN_NAME_EMPLOYEE_MANAGER );
    if( mgr != null )
      return mgr.getByPerson( party_id );
   
    return null;
  }
View Full Code Here

TOP

Related Classes of com.google.code.lightssh.project.party.service.EmployeeManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.