贸易单证详情-件数

This commit is contained in:
zhaoqing
2026-05-19 15:45:41 +08:00
parent 3b12c6fe0a
commit cc8051b579
5 changed files with 55 additions and 8 deletions
@@ -4,13 +4,7 @@ import java.util.List;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import com.mhd.oms.interfaces.dto.businessDocumentCargoMulti.BusinessDocumentCargoMultiDTO;
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.todo.BusinessDocumentCargoMultiDO;
import com.mhd.oms.domain.businessDocumentCargoMulti.repository.po.BusinessDocumentCargoMultiPO;
@@ -89,7 +83,11 @@ public class BusinessDocumentCargoMultiApi extends BaseController{
@ApiOperation("根据物料ID列表批量查询物料")
@GetMapping("/getBatchByOrderId")
public TableDataInfo getBatchByIds(@RequestParam("orderId") String orderId) {
return businessDocumentCargoMultiApplicationService.getByOrderId(orderId);
}