| | |
| | | * @author ruoyi |
| | | * @date 2025-12-15 |
| | | */ |
| | | @Api(description = "供者转运登记附件") |
| | | @Api(description = "供者转运登记附件",tags = {"供者转运登记附件"}) |
| | | @RestController |
| | | @RequestMapping("/project/transportfile") |
| | | public class ServiceTransportFileController extends BaseController { |
| | |
| | | @ApiOperation("查询供者转运登记附件列表") |
| | | // @PreAuthorize("@ss.hasPermi('system:file:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(ServiceTransportFile serviceTransportFile) { |
| | | public TableDataInfo list(@RequestBody ServiceTransportFile serviceTransportFile) { |
| | | startPage(); |
| | | List<ServiceTransportFile> list = serviceTransportFileService.queryList(serviceTransportFile); |
| | | return getDataTable(list); |