This commit is contained in:
luoliming 2024-02-15 22:55:02 +08:00
parent f8d30f9208
commit 603421b8f1
1 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@ package com.nflg.product.bomnew.api.user;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.nflg.product.bomnew.pojo.query.BomNewEbomParentQuery;
import com.nflg.product.bomnew.pojo.query.ReverseReportQuery;
import com.nflg.product.bomnew.pojo.vo.BomNewEbomParentVO;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
@ -21,7 +22,7 @@ public class BomReportApi {
@PostMapping("reverseReport")
@ApiOperation("bom-反查")
public ResultVO<Page<BomNewEbomParentVO>> reverseReport(@RequestBody BomNewEbomParentQuery query) {
return ResultVO.success(bomNewEbomParentService.formalWorksheet(query));
public ResultVO<Page<BomNewEbomParentVO>> reverseReport(@RequestBody ReverseReportQuery query) {
return ResultVO.success();
}
}