| | |
| | | |
| | | private final IDockingPreApplyFormService dockingPreApplyFormService; |
| | | |
| | | /*** |
| | | * 属性枚举范围服务 |
| | | */ |
| | | |
| | | private final IDockingPreViewModelService dockingPreViewModelService; |
| | | |
| | | |
| | | /*** |
| | | * 属性枚举范围服务 |
| | |
| | | * @return 集团分类显示树 |
| | | */ |
| | | @GetMapping("/referTree") |
| | | public List<Tree> referTree(@RequestBody TreeQueryObject treeQueryObject) { |
| | | public List<Tree> referTree(TreeQueryObject treeQueryObject) { |
| | | return dockingPreClassifyService.treeCompanyGroupClassify(treeQueryObject); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 参照树 主数据模板属性信息 |
| | | * @param classifyId 主数据分类主键 |
| | | * @return 主题库分类模板属性 |
| | | */ |
| | | @GetMapping("/listViewModelAttributeByClassId") |
| | | public R listViewModelAttributeByClassId(String classifyId) { |
| | | return R.data(dockingPreViewModelService.selectDockingPreViewModelByClassId(classifyId,true)); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return 主题库分类显示树 |
| | | */ |
| | | @GetMapping("/referCodeClassifyTree") |
| | | public List<Tree> referCodeClassifyTree(@RequestBody TreeQueryObject treeQueryObject) { |
| | | public List<Tree> referCodeClassifyTree(TreeQueryObject treeQueryObject) { |
| | | return codeClassifyClient.referCodeClassifyTree(treeQueryObject); |
| | | } |
| | | |
| | |
| | | * @param codeClassifyId 主数据分类主键 |
| | | * @return 主题库分类模板属性 |
| | | */ |
| | | @GetMapping("/referCodeClassifyTree") |
| | | public List<CodeClassifyTemplateAttrVO> listCodeAttributeByClassId(String codeClassifyId) { |
| | | return codeClassifyClient.listCodeAttributeByClassId(codeClassifyId); |
| | | @GetMapping("/listCodeAttributeByClassId") |
| | | public R listCodeAttributeByClassId(String codeClassifyId) { |
| | | return R.data(codeClassifyClient.listCodeAttributeByClassId(codeClassifyId)); |
| | | } |
| | | |
| | | |
| | |
| | | } |
| | | } |
| | | |
| | | |
| | | /*** |
| | | * 同步集团模型视图 |
| | | * @return 返回执行结果信息 |