Package com.fengjing.framework.hibernate.model

Examples of com.fengjing.framework.hibernate.model.Department


     
      employee.setEmpname("����");
      employee.setSex("Ů");
      employee.setLocation("��������");
     
      Department department=new Department();
      department.setDeptname("���Բ�");
     
      employee.setDepartment(department);
     
      employeeService.add(employee);
     
View Full Code Here


   
    employee.setEmpname("����");
    employee.setSex("Ů");
    employee.setLocation("��������");
   
    Department department=new Department();
    department.setDeptname("���Բ�");
   
    employee.setDepartment(department);
   
    employeeService.add(employee);
   
View Full Code Here

TOP

Related Classes of com.fengjing.framework.hibernate.model.Department

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.