| | |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"), |
| | | @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"), |
| | | @ApiImplicitParam(paramType = "query", name = "entryId", dataType = "long", required = true, value = "入库id") |
| | | @ApiImplicitParam(paramType = "query", name = "entryId", dataType = "long", required = true, value = "入库id"), |
| | | @ApiImplicitParam(paramType = "query", name = "companyId", dataType = "long", required = false, value = "公司ID") |
| | | }) |
| | | @GetMapping("/productlist") |
| | | public CommonResult productlist(Long entryId){ |
| | | return CommonResult.success(entryRecordService.selectProductListByEntryId(entryId)); |
| | | public CommonResult productlist(Long entryId,Long companyId){ |
| | | return CommonResult.success(entryRecordService.selectProductListByEntryId(entryId,companyId)); |
| | | } |
| | | |
| | | @RepeatSubmit |