| | |
| | | * @author ruoyi |
| | | * @date 2025-12-15 |
| | | */ |
| | | @Api(description = "供者转运登记") |
| | | @Api(description = "供者转运登记",tags = {"供者转运登记"}) |
| | | @RestController |
| | | @RequestMapping("/project/transport") |
| | | public class ServiceTransportController extends BaseController { |
| | |
| | | @ApiOperation("查询供者转运登记列表") |
| | | // @PreAuthorize("@ss.hasPermi('system:transport:list')") |
| | | @PostMapping("/list") |
| | | public Map<String, Object> list(ServiceTransport serviceTransport) { |
| | | public Map<String, Object> list(@RequestBody ServiceTransport serviceTransport) { |
| | | Page<ServiceTransport> serviceTransportPage = serviceTransportService.queryList(serviceTransport); |
| | | return getDataTable(serviceTransportPage.getRecords(), (int) serviceTransportPage.getTotal()); |
| | | } |