| | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
| | | import com.vci.ubcs.code.feign.ICodeClassifyClient; |
| | | import com.vci.ubcs.code.vo.pagemodel.CodeClassifyTemplateAttrVO; |
| | | import com.vci.ubcs.code.webservice.service.*; |
| | | import com.vci.ubcs.code.webservice.vo.*; |
| | | import com.vci.ubcs.code.webservice.wrapper.DockingPreApplyFormWrapper; |
| | |
| | | private final IDockingPreApplyFormService dockingPreApplyFormService; |
| | | |
| | | |
| | | /*** |
| | | * 属性枚举范围服务 |
| | | */ |
| | | |
| | | private final ICodeClassifyClient codeClassifyClient; |
| | | |
| | | /** |
| | | * 根据主数据编码oid获取集团属性映射信息 |
| | |
| | | /** |
| | | * 参照树 集团分类(是否包含属性) |
| | | * @param treeQueryObject 树形查询对象 conditionMap 存上 codeclsfid=主数据的分类oid |
| | | * @return 主题库分类显示树 |
| | | * @return 集团分类显示树 |
| | | */ |
| | | @GetMapping("/referTree") |
| | | public List<Tree> referTree(TreeQueryObject treeQueryObject) { |
| | | public List<Tree> referTree(@RequestBody TreeQueryObject treeQueryObject) { |
| | | return dockingPreClassifyService.treeCompanyGroupClassify(treeQueryObject); |
| | | } |
| | | |
| | | /** |
| | | * 参照树 主数据分类 |
| | | * @param treeQueryObject 树形查询对象 conditionMap 存上 codeclsfid=主数据的分类oid |
| | | * @return 主题库分类显示树 |
| | | */ |
| | | @GetMapping("/referCodeClassifyTree") |
| | | public List<Tree> referCodeClassifyTree(@RequestBody TreeQueryObject treeQueryObject) { |
| | | return codeClassifyClient.referCodeClassifyTree(treeQueryObject); |
| | | } |
| | | |
| | | /** |
| | | * 参照树 主数据模板属性信息 |
| | | * @param codeClassifyId 主数据分类主键 |
| | | * @return 主题库分类模板属性 |
| | | */ |
| | | @GetMapping("/referCodeClassifyTree") |
| | | public List<CodeClassifyTemplateAttrVO> listCodeAttributeByClassId(String codeClassifyId) { |
| | | return codeClassifyClient.listCodeAttributeByClassId(codeClassifyId); |
| | | } |
| | | |
| | | |
| | | /*** |
| | | * 申请集团编码 |
| | | * @return |