123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- package com.ruoyi.asset.controller;
- import java.util.List;
- import javax.servlet.http.HttpServletResponse;
- import org.springframework.data.redis.core.RedisTemplate;
- 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.asset.domain.TbAssetInformation;
- import com.ruoyi.asset.service.ITbAssetInformationService;
- import com.ruoyi.common.utils.poi.ExcelUtil;
- import com.ruoyi.common.core.page.TableDataInfo;
- import org.springframework.web.multipart.MultipartFile;
- /**
- * 资产信息Controller
- *
- * @author 原动力
- * @date 2023-05-15
- */
- @RestController
- @RequestMapping("/asset/information")
- public class TbAssetInformationController extends BaseController
- {
- @Autowired
- private ITbAssetInformationService tbAssetInformationService;
- /**
- * 查询资产信息列表
- */
- @PreAuthorize("@ss.hasPermi('asset:information:list')")
- @GetMapping("/list")
- public TableDataInfo list(TbAssetInformation tbAssetInformation)
- {
- startPage();
- List<TbAssetInformation> list = tbAssetInformationService.selectTbAssetInformationList(tbAssetInformation);
- return getDataTable(list);
- }
- /**
- * 导出资产信息列表
- */
- @PreAuthorize("@ss.hasPermi('asset:information:export')")
- @Log(title = "资产信息", businessType = BusinessType.EXPORT)
- @PostMapping("/export")
- public void export(HttpServletResponse response, TbAssetInformation tbAssetInformation)
- {
- List<TbAssetInformation> list = tbAssetInformationService.selectTbAssetInformationList(tbAssetInformation);
- ExcelUtil<TbAssetInformation> util = new ExcelUtil<TbAssetInformation>(TbAssetInformation.class);
- util.exportExcel(response, list, "资产信息数据");
- }
- /**
- * 获取资产信息详细信息
- */
- @PreAuthorize("@ss.hasPermi('asset:information:query')")
- @GetMapping(value = "/{id}")
- public AjaxResult getInfo(@PathVariable("id") Long id)
- {
- return success(tbAssetInformationService.selectTbAssetInformationById(id));
- }
- private boolean checkNumber(String number) {
- return number.matches("^[A-Fa-f0-9]+$");
- }
- /**
- * 新增资产信息
- */
- @PreAuthorize("@ss.hasPermi('asset:information:add')")
- @Log(title = "资产信息", businessType = BusinessType.INSERT)
- @PostMapping
- public AjaxResult add(@RequestBody TbAssetInformation tbAssetInformation)
- {
- String number = tbAssetInformation.getNumber();
- boolean flag = checkNumber(number);
- if (!flag) {
- return error("资产编号格式仅限[A-Fa-f0-9]");
- }
- tbAssetInformation.setCode(number);
- return toAjax(tbAssetInformationService.insertTbAssetInformation(tbAssetInformation));
- }
- /**
- * 修改资产信息
- */
- @PreAuthorize("@ss.hasPermi('asset:information:edit')")
- @Log(title = "资产信息", businessType = BusinessType.UPDATE)
- @PutMapping
- public AjaxResult edit(@RequestBody TbAssetInformation tbAssetInformation)
- {
- String number = tbAssetInformation.getNumber();
- boolean flag = checkNumber(number);
- if (!flag) {
- return error("资产编号格式仅限[A-Fa-f0-9]");
- }
- tbAssetInformation.setCode(number);
- return toAjax(tbAssetInformationService.updateTbAssetInformation(tbAssetInformation));
- }
- /**
- * 删除资产信息
- */
- @PreAuthorize("@ss.hasPermi('asset:information:remove')")
- @Log(title = "资产信息", businessType = BusinessType.DELETE)
- @DeleteMapping("/{ids}")
- public AjaxResult remove(@PathVariable Long[] ids)
- {
- return toAjax(tbAssetInformationService.deleteTbAssetInformationByIds(ids));
- }
- /**
- * 自定义字段
- */
- @PreAuthorize("@ss.hasPermi('asset:information:query')")
- @Log(title = "资产信息字段自定义设置")
- @PostMapping("/setDiy")
- public AjaxResult setDiy(@RequestBody List<String> labels)
- {
- return toAjax(tbAssetInformationService.setDiy(labels));
- }
- /**
- * 自定义字段
- */
- @PreAuthorize("@ss.hasPermi('asset:information:query')")
- @Log(title = "资产信息字段自定义获取")
- @GetMapping("/getDiy")
- public AjaxResult getDiy()
- {
- return success(tbAssetInformationService.getDiy());
- }
- /**
- * 导入excel
- * @param file
- * @param updateSupport
- * @return
- * @throws Exception
- */
- @Log(title = "资产信息导入", businessType = BusinessType.IMPORT) // todo
- @PreAuthorize("@ss.hasPermi('asset:information:import')") // todo
- @PostMapping("/importData")
- public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception
- {
- ExcelUtil<TbAssetInformation> util = new ExcelUtil<>(TbAssetInformation.class); // todo
- List<TbAssetInformation> stuList = util.importExcel(file.getInputStream()); // todo
- String operName = getUsername();
- String message = tbAssetInformationService.importCon(stuList, updateSupport, operName); // todo
- return AjaxResult.success(message);
- }
- @PostMapping("/importTemplate")
- public void importTemplate(HttpServletResponse response)
- {
- ExcelUtil<TbAssetInformation> util = new ExcelUtil<>(TbAssetInformation.class); // todo
- util.importTemplateExcel(response, "资产信息");
- }
- }
|