lihang
2023-08-04 c3ac3444bbb9bacfb837423438b05bb1bc840670
Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/controller/MdmEngineController.java
@@ -13,6 +13,7 @@
import com.vci.ubcs.code.service.MdmEngineService;
import com.vci.ubcs.code.service.MdmIOService;
import com.vci.ubcs.code.vo.pagemodel.*;
import com.vci.ubcs.flow.core.dto.FlowStatusDTO;
import com.vci.ubcs.starter.annotation.VciBusinessLog;
import com.vci.ubcs.starter.revision.model.BaseModel;
import com.vci.ubcs.starter.revision.model.TreeQueryObject;
@@ -739,4 +740,13 @@
      return engineService.referTree(referConfigVO,queryObject);
   }
   /**
    * 流程中变更状态的简易接口
    * @param flowDTO 流程中携带的body
    * @return
    */
   @PostMapping("/processChangeStatus")
   public R processChangeStatus(@RequestBody FlowStatusDTO flowDTO){
      return engineService.processChangeStatus(flowDTO);
   }
}