sinake
3 天以前 cf30fcdf2f453ed7fb6f9b0e025ce60082e399df
ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceTransportFileController.java
@@ -24,9 +24,9 @@
 * @author ruoyi
 * @date 2025-12-15
 */
@Api(description = "供者转运登记附件")
@Api(description = "供者转运登记附件",tags = {"供者转运登记附件"})
@RestController
@RequestMapping("/system/transportfile")
@RequestMapping("/project/transportfile")
public class ServiceTransportFileController extends BaseController {
    @Autowired
    private IServiceTransportFileService serviceTransportFileService;
@@ -37,7 +37,7 @@
    @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);