浏览代码

保存检测结果接口增加当前用户的参数标注

hy2250089
hy2250089 4 年前
父节点
当前提交
7783a360af
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      wms-produce-manage/src/main/java/com/deer/wms/produce/manage/web/ProductBatchDetectController.java

+ 2
- 1
wms-produce-manage/src/main/java/com/deer/wms/produce/manage/web/ProductBatchDetectController.java 查看文件

@@ -101,7 +101,8 @@ public class ProductBatchDetectController {
*/
@ApiOperation(value = "保存检测等级和瑕疵名细", notes = "保存检测等级和瑕疵名细")
@ApiImplicitParams({
@ApiImplicitParam(name = "productBatchDetectInfo", value = "批次加工单、工序、批次明细、检测等级、瑕疵名细混合对象", paramType = "body", dataType = "ProductBatchDetectInfo", required = true)
@ApiImplicitParam(name = "productBatchDetectInfo", value = "批次加工单、工序、批次明细、检测等级、瑕疵名细混合对象", paramType = "body", dataType = "ProductBatchDetectInfo", required = true),
@ApiImplicitParam(name = "currentUser", value = "当前用户", paramType = "body", dataType = "CurrentUser", required = true)
})
@OperateLog(description = "保存检测等级和瑕疵名细", type = "增加")
@PostMapping("/saveDetectRusult")


正在加载...
取消
保存