Package com.db.organization

Examples of com.db.organization.JobVO


    this.adminDAO = adminDAO;
  }

 
  public String execute() throws Exception {
    JobVO vo = new JobVO();
    vo.setJobno(vo.getJobno() + 10);
    vo.setJname(jname);
    vo.setSlevel(slevel);
    vo.setDescription("");
    adminDAO.jobInsert(vo);
    adminDAO.DeptList();
    return "success";
  }
View Full Code Here

TOP

Related Classes of com.db.organization.JobVO

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.