|
@@ -0,0 +1,104 @@
|
|
|
+package com.ruoyi.web.controller.system;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.PutMapping;
|
|
|
+import org.springframework.web.bind.annotation.DeleteMapping;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+import com.ruoyi.common.annotation.Log;
|
|
|
+import com.ruoyi.common.core.controller.BaseController;
|
|
|
+import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
+import com.ruoyi.common.enums.BusinessType;
|
|
|
+import com.ruoyi.system.domain.SysFileInfo;
|
|
|
+import com.ruoyi.system.service.ISysFileInfoService;
|
|
|
+import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
|
+import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 文件信息Controller
|
|
|
+ *
|
|
|
+ * @author ruoyi
|
|
|
+ * @date 2023-01-17
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("/system/info")
|
|
|
+public class SysFileInfoController extends BaseController
|
|
|
+{
|
|
|
+ @Autowired
|
|
|
+ private ISysFileInfoService sysFileInfoService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询文件信息列表
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('system:info:list')")
|
|
|
+ @GetMapping("/list")
|
|
|
+ public TableDataInfo list(SysFileInfo sysFileInfo)
|
|
|
+ {
|
|
|
+ startPage();
|
|
|
+ List<SysFileInfo> list = sysFileInfoService.selectSysFileInfoList(sysFileInfo);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导出文件信息列表
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('system:info:export')")
|
|
|
+ @Log(title = "文件信息", businessType = BusinessType.EXPORT)
|
|
|
+ @PostMapping("/export")
|
|
|
+ public void export(HttpServletResponse response, SysFileInfo sysFileInfo)
|
|
|
+ {
|
|
|
+ List<SysFileInfo> list = sysFileInfoService.selectSysFileInfoList(sysFileInfo);
|
|
|
+ ExcelUtil<SysFileInfo> util = new ExcelUtil<SysFileInfo>(SysFileInfo.class);
|
|
|
+ util.exportExcel(response, list, "文件信息数据");
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取文件信息详细信息
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('system:info:query')")
|
|
|
+ @GetMapping(value = "/{fileId}")
|
|
|
+ public AjaxResult getInfo(@PathVariable("fileId") Long fileId)
|
|
|
+ {
|
|
|
+ return success(sysFileInfoService.selectSysFileInfoByFileId(fileId));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增文件信息
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('system:info:add')")
|
|
|
+ @Log(title = "文件信息", businessType = BusinessType.INSERT)
|
|
|
+ @PostMapping
|
|
|
+ public AjaxResult add(@RequestBody SysFileInfo sysFileInfo)
|
|
|
+ {
|
|
|
+ return toAjax(sysFileInfoService.insertSysFileInfo(sysFileInfo));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改文件信息
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('system:info:edit')")
|
|
|
+ @Log(title = "文件信息", businessType = BusinessType.UPDATE)
|
|
|
+ @PutMapping
|
|
|
+ public AjaxResult edit(@RequestBody SysFileInfo sysFileInfo)
|
|
|
+ {
|
|
|
+ return toAjax(sysFileInfoService.updateSysFileInfo(sysFileInfo));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除文件信息
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('system:info:remove')")
|
|
|
+ @Log(title = "文件信息", businessType = BusinessType.DELETE)
|
|
|
+ @DeleteMapping("/{fileIds}")
|
|
|
+ public AjaxResult remove(@PathVariable Long[] fileIds)
|
|
|
+ {
|
|
|
+ return toAjax(sysFileInfoService.deleteSysFileInfoByFileIds(fileIds));
|
|
|
+ }
|
|
|
+}
|