Package com.fengjing.framework.springmvc.model

Examples of com.fengjing.framework.springmvc.model.Dept


  @Test
  public void save(){
   
    User user=new User();
    user.setUsername("��xx");
    Dept dept=new Dept();
    dept.setDeptname("�Ļ���");
    user.setDept(dept);
   
    User u = userService.save(user);
    Assert.notNull(u);
   
View Full Code Here


  @Test
  public void modifyUser(){
   
    User user = userService.findUserById(1);
    user.setUsername("С��");
    Dept dept=user.getDept();
    dept.setDeptname("�з���");
    user.setDept(dept);
    userService.modifyUser(user);
   
  }
View Full Code Here

TOP

Related Classes of com.fengjing.framework.springmvc.model.Dept

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.