Package com.fengjing.framework.mongodb.dto

Examples of com.fengjing.framework.mongodb.dto.UserListDto


  }
 
  @RequestMapping(value="/records")
  public @ResponseBody UserListDto getUsers() {
   
    UserListDto userListDto = new UserListDto();
    userListDto.setUsers(service.readAll());
    return userListDto;
  }
View Full Code Here

TOP

Related Classes of com.fengjing.framework.mongodb.dto.UserListDto

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.