| | |
| | | String TOP = API_PREFIX + "/top"; |
| | | String CODE_CLASSIFY_TREE=API_PREFIX+"/referCodeClassifyTree"; |
| | | String CODE_ATTRIBUTE_LIST=API_PREFIX+"/listCodeAttributeByClassId"; |
| | | |
| | | String CODE_GETBYID="/getById"; |
| | | /** |
| | | * 获取主题库定义表列表 |
| | | * |
| | |
| | | */ |
| | | @GetMapping(CODE_ATTRIBUTE_LIST) |
| | | public List<CodeClassifyTemplateAttrVO> listCodeAttributeByClassId(@RequestParam("codeClassifyId") String codeClassifyId); |
| | | |
| | | /*** |
| | | * 根据分类id差爱心分类信息 |
| | | * @param classifyId |
| | | * @return |
| | | */ |
| | | @GetMapping(CODE_GETBYID) |
| | | CodeClassify getById(@RequestParam("classifyId")String classifyId); |
| | | } |