类 DictionaryController
- java.lang.Object
-
- com.github.appundefined.data.dictionary.controller.DictionaryController
-
@RestController @RequestMapping("/dataDictionary") public class DictionaryController extends Object
-
-
构造器概要
构造器 构造器 说明 DictionaryController()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 com.github.appundefined.commons.ResultMapadd(Dictionary dictionary)com.github.appundefined.commons.ResultMapdelete(ArrayList<Long> ids)com.github.appundefined.commons.ResultMapfindAllList(Dictionary dictionary)StringfindNameById(Long id)com.github.appundefined.commons.ResultMapgetTreeByTypeTree(Dictionary dictionary)com.github.appundefined.commons.ResultMapupdate(Dictionary dictionary)
-
-
-
方法详细资料
-
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)
-
-