package com.fjhx.controller; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.fjhx.entity.FileInfo; import com.fjhx.params.FileInfoVo; import com.fjhx.service.FileInfoService; import org.springblade.core.tool.api.R; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.util.Map; /** *
* 文件 前端控制器 *
* * @author ${author} * @since 2022-07-07 */ @RestController @RequestMapping("/fileInfo") public class FileInfoController { @Autowired private FileInfoService fileInfoService; @PostMapping("/page") public R page(@RequestBody Map