Package com.fengjing.framework.springmvc.dwr.model

Examples of com.fengjing.framework.springmvc.dwr.model.User


    return "dwrservice";
  }

  @Override
  public User findUserById(long id) {
    return new User(1,"admin","1987-02-03","��������");
  }
View Full Code Here


  }

  public List<User> listAll(){
    List<User> lists=new ArrayList<User>();
    for (int i = 1; i <= 100; i++) {
      lists.add(new User(i,"admin"+i,"1987-02-03","��������"+i));
    }
    return lists;
  }
View Full Code Here

TOP

Related Classes of com.fengjing.framework.springmvc.dwr.model.User

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.