|
...
|
...
|
@@ -95,6 +95,13 @@ public class TblProductionGongxuController extends JeecgController<TblProduction |
|
|
|
return Result.OK("添加成功!");
|
|
|
|
}
|
|
|
|
|
|
|
|
//批量修改工序验收
|
|
|
|
@PutMapping("/updateYan")
|
|
|
|
public Result<?> updateYan(@RequestBody List<TblProductionGongxu> tblProductionGongxuList){
|
|
|
|
boolean b = tblProductionGongxuService.updateBatchById(tblProductionGongxuList);
|
|
|
|
return Result.ok("修改成功");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 编辑
|
|
|
|
*
|
...
|
...
|
|