Package com.lanyuan.entity

Examples of com.lanyuan.entity.Resources


   * @param type
   * @return
   */
  @RequestMapping(value="getById")
  public String getById(Model model,String resourcesId,int typeKey){
    Resources resources = resourcesService.getById(resourcesId);
    model.addAttribute("resources", resources);
    List<Resources> resLists = resourcesService.findAll();
    model.addAttribute("resLists", resLists);
    if(typeKey == 1){
      return "/background/resources/edit";
View Full Code Here

TOP

Related Classes of com.lanyuan.entity.Resources

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.