Package com.thinkgem.jeesite.modules.sys.entity

Examples of com.thinkgem.jeesite.modules.sys.entity.Dict


  @ModelAttribute
  public Dict get(@RequestParam(required=false) String id) {
    if (StringUtils.isNotBlank(id)){
      return dictService.get(id);
    }else{
      return new Dict();
    }
  }
View Full Code Here

TOP

Related Classes of com.thinkgem.jeesite.modules.sys.entity.Dict

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.