xiejun
2023-11-30 529b40cc4cd049ae3e96d3aedae3142e0effea60
Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/service/MdmEngineService.java
@@ -64,7 +64,12 @@
    * @return 返回编码的内容
    */
   String addSaveCode(CodeOrderDTO orderDTO) throws Exception;
   /**
    * 申请单一编码
    * @param orderDTO 申请的信息,需要包含属性的内容和码段相关的内容
    * @param  authUser 是否模拟登录,true,不模拟,false是模拟
    * @return 返回编码的内容
    */
   String addSaveCodeNotauthUser(CodeOrderDTO orderDTO, boolean authUser) throws Exception;
   /**
@@ -501,4 +506,11 @@
    * @return 执行结果
    */
   String addSaveBZ(CodeBZApplyDTO codeBZApplyDTO) throws Exception;
   /**
    * 标准申请和修订用
    * @param codeBZApplyDTO 编码申请相关的信息,需要有属性和码段相关的信息
    * @param authUser 是否模拟登录,true,不模拟,false是模拟
    * @return 执行结果
    */
   String addSaveBZCodeNotauthUser(CodeBZApplyDTO codeBZApplyDTO, boolean authUser) throws Exception;
}