mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
新增webcad生产单导入:增加接口回调信息
This commit is contained in:
+3
-1
@@ -1,5 +1,6 @@
|
||||
package com.cf.imes.module.plan.controller.admin.orderImport;
|
||||
|
||||
import com.cf.imes.framework.common.pojo.CommonResult;
|
||||
import com.cf.imes.framework.operatelog.core.annotations.OperateLog;
|
||||
import com.cf.imes.module.plan.controller.admin.orderImport.webcad.vo.WebCadDataReqVO;
|
||||
import com.cf.imes.module.plan.service.orderImport.WebCadOrderImportService;
|
||||
@@ -32,7 +33,8 @@ public class OrderImportController {
|
||||
@PostMapping("/webcad/import")
|
||||
@Operation(summary = "生产单导入新增")
|
||||
@OperateLog(type = IMPORT)
|
||||
public void webCadOrderImport(@RequestBody WebCadDataReqVO webCadDataReqVO) {
|
||||
public CommonResult<Boolean> webCadOrderImport(@RequestBody WebCadDataReqVO webCadDataReqVO) {
|
||||
webCadOrderImportService.webCadOrderImport(webCadDataReqVO);
|
||||
return CommonResult.success(true);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user