Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/feign/MdmEngineClient.java
@@ -78,5 +78,21 @@ throw new RuntimeException(e); } } /** * 更新业务数据同时对码值表数据操作接口 * * @param btmType 业务类型 * @param baseModels 处理数据 * @return 处理状态 */ @Override @PostMapping(UPDATE_BATCH_BY_TYPE) public R<Integer>updateBatchBtypeDatas(String btmType, List<BaseModel> baseModels){ try { return mdmEngineService.updateBatchBtypeDatas(btmType,baseModels); } catch (Exception e) { throw new RuntimeException(e); } } }