类 DictionaryController


  • @RestController
    @RequestMapping("/dataDictionary")
    public class DictionaryController
    extends Object
    • 构造器详细资料

      • DictionaryController

        public DictionaryController()
    • 方法详细资料

      • getTreeByTypeTree

        @RequestMapping(value="/findAllTree",
                        method=POST)
        @ResponseBody
        public com.github.appundefined.commons.ResultMap getTreeByTypeTree​(@RequestBody
                                                                           Dictionary dictionary)
      • findAllList

        @RequestMapping(value="/findAllList",
                        method=POST)
        @ResponseBody
        public com.github.appundefined.commons.ResultMap findAllList​(@RequestBody
                                                                     Dictionary dictionary)
      • findNameById

        @RequestMapping(value="/findNameById",
                        method=GET)
        @ResponseBody
        public String findNameById​(Long id)
      • add

        @RequestMapping(value="/add",
                        method=POST)
        @ResponseBody
        public com.github.appundefined.commons.ResultMap add​(@RequestBody
                                                             Dictionary dictionary)
      • delete

        @RequestMapping(value="/delete",
                        method=POST)
        @ResponseBody
        public com.github.appundefined.commons.ResultMap delete​(@RequestBody
                                                                ArrayList<Long> ids)
      • update

        @RequestMapping(value="/update",
                        method=POST)
        @ResponseBody
        public com.github.appundefined.commons.ResultMap update​(@RequestBody
                                                                Dictionary dictionary)