xiejun
2023-11-26 c4d687aacfb4e7b6ee5ce67df93cf2f8d8df80c1
Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/service/MdmEngineService.java
@@ -64,6 +64,8 @@
    */
   String addSaveCode(CodeOrderDTO orderDTO) throws Exception;
   String addSaveCodeNotauthUser(CodeOrderDTO orderDTO, boolean authUser) throws Exception;
   /**
    * 判断编码的码段是否输入或者选择了码值
    * @param ruleVO 规则的显示对象
@@ -159,6 +161,7 @@
    * @param conditionMap   查询条件
    */
   void wrapperResembleConditionMap(String value, CodeResembleRuleVO resembleRuleVO, String attrId, Map<String, String> conditionMap);
   /**
    * 获取使用的相似查询规则
    *
@@ -395,6 +398,26 @@
    * @return 处理成功数据条数
    */
   Integer insertBatchByType(String btmType, List<BaseModel> baseModels);
   /**
    * 传入业务类型以及ID查询业务表数据是否重复
    *
    * @param btmType 业务类型
    * @param ids      处理数据
    * @return 查询到数据的总数
    */
   Integer selectIdsCounts(String btmType, List<String> ids);
   /**
    * 传入业务类型以及ID、OID查询业务表数据是否重复
    *
    * @param btmType 业务类型
    * @param id      处理数据id
    * @param oid      处理数据oid
    * @return 查询到数据的总数
    */
   Integer selectIdAndOidCounts(String btmType, String id, String oid);
   /**
    * 传入业务类型以及相oid集合查询数据进行返回
    *
@@ -402,7 +425,8 @@
    * @param oids      需要查询的oid集合 逗号分开
    * @return 查询出的数据
    */
   List<BaseModel> selectByTypeAndOid(String btmType, String oids) ;
   List<BaseModel> selectByTypeAndOid(String btmType, String oids);
   /**
    * 传入业务类型以及相关数据进行批量更新操作
    *