TbAssetInformationController.java 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. package com.ruoyi.asset.controller;
  2. import java.util.List;
  3. import javax.servlet.http.HttpServletResponse;
  4. import org.springframework.data.redis.core.RedisTemplate;
  5. import org.springframework.security.access.prepost.PreAuthorize;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.web.bind.annotation.GetMapping;
  8. import org.springframework.web.bind.annotation.PostMapping;
  9. import org.springframework.web.bind.annotation.PutMapping;
  10. import org.springframework.web.bind.annotation.DeleteMapping;
  11. import org.springframework.web.bind.annotation.PathVariable;
  12. import org.springframework.web.bind.annotation.RequestBody;
  13. import org.springframework.web.bind.annotation.RequestMapping;
  14. import org.springframework.web.bind.annotation.RestController;
  15. import com.ruoyi.common.annotation.Log;
  16. import com.ruoyi.common.core.controller.BaseController;
  17. import com.ruoyi.common.core.domain.AjaxResult;
  18. import com.ruoyi.common.enums.BusinessType;
  19. import com.ruoyi.asset.domain.TbAssetInformation;
  20. import com.ruoyi.asset.service.ITbAssetInformationService;
  21. import com.ruoyi.common.utils.poi.ExcelUtil;
  22. import com.ruoyi.common.core.page.TableDataInfo;
  23. import org.springframework.web.multipart.MultipartFile;
  24. /**
  25. * 资产信息Controller
  26. *
  27. * @author 原动力
  28. * @date 2023-05-15
  29. */
  30. @RestController
  31. @RequestMapping("/asset/information")
  32. public class TbAssetInformationController extends BaseController
  33. {
  34. @Autowired
  35. private ITbAssetInformationService tbAssetInformationService;
  36. /**
  37. * 查询资产信息列表
  38. */
  39. @PreAuthorize("@ss.hasPermi('asset:information:list')")
  40. @GetMapping("/list")
  41. public TableDataInfo list(TbAssetInformation tbAssetInformation)
  42. {
  43. startPage();
  44. List<TbAssetInformation> list = tbAssetInformationService.selectTbAssetInformationList(tbAssetInformation);
  45. return getDataTable(list);
  46. }
  47. /**
  48. * 导出资产信息列表
  49. */
  50. @PreAuthorize("@ss.hasPermi('asset:information:export')")
  51. @Log(title = "资产信息", businessType = BusinessType.EXPORT)
  52. @PostMapping("/export")
  53. public void export(HttpServletResponse response, TbAssetInformation tbAssetInformation)
  54. {
  55. List<TbAssetInformation> list = tbAssetInformationService.selectTbAssetInformationList(tbAssetInformation);
  56. ExcelUtil<TbAssetInformation> util = new ExcelUtil<TbAssetInformation>(TbAssetInformation.class);
  57. util.exportExcel(response, list, "资产信息数据");
  58. }
  59. /**
  60. * 获取资产信息详细信息
  61. */
  62. @PreAuthorize("@ss.hasPermi('asset:information:query')")
  63. @GetMapping(value = "/{id}")
  64. public AjaxResult getInfo(@PathVariable("id") Long id)
  65. {
  66. return success(tbAssetInformationService.selectTbAssetInformationById(id));
  67. }
  68. private boolean checkNumber(String number) {
  69. return number.matches("^[A-Fa-f0-9]+$");
  70. }
  71. /**
  72. * 新增资产信息
  73. */
  74. @PreAuthorize("@ss.hasPermi('asset:information:add')")
  75. @Log(title = "资产信息", businessType = BusinessType.INSERT)
  76. @PostMapping
  77. public AjaxResult add(@RequestBody TbAssetInformation tbAssetInformation)
  78. {
  79. String number = tbAssetInformation.getNumber();
  80. boolean flag = checkNumber(number);
  81. if (!flag) {
  82. return error("资产编号格式仅限[A-Fa-f0-9]");
  83. }
  84. tbAssetInformation.setCode(number);
  85. return toAjax(tbAssetInformationService.insertTbAssetInformation(tbAssetInformation));
  86. }
  87. /**
  88. * 修改资产信息
  89. */
  90. @PreAuthorize("@ss.hasPermi('asset:information:edit')")
  91. @Log(title = "资产信息", businessType = BusinessType.UPDATE)
  92. @PutMapping
  93. public AjaxResult edit(@RequestBody TbAssetInformation tbAssetInformation)
  94. {
  95. String number = tbAssetInformation.getNumber();
  96. boolean flag = checkNumber(number);
  97. if (!flag) {
  98. return error("资产编号格式仅限[A-Fa-f0-9]");
  99. }
  100. tbAssetInformation.setCode(number);
  101. return toAjax(tbAssetInformationService.updateTbAssetInformation(tbAssetInformation));
  102. }
  103. /**
  104. * 删除资产信息
  105. */
  106. @PreAuthorize("@ss.hasPermi('asset:information:remove')")
  107. @Log(title = "资产信息", businessType = BusinessType.DELETE)
  108. @DeleteMapping("/{ids}")
  109. public AjaxResult remove(@PathVariable Long[] ids)
  110. {
  111. return toAjax(tbAssetInformationService.deleteTbAssetInformationByIds(ids));
  112. }
  113. /**
  114. * 自定义字段
  115. */
  116. @PreAuthorize("@ss.hasPermi('asset:information:query')")
  117. @Log(title = "资产信息字段自定义设置")
  118. @PostMapping("/setDiy")
  119. public AjaxResult setDiy(@RequestBody List<String> labels)
  120. {
  121. return toAjax(tbAssetInformationService.setDiy(labels));
  122. }
  123. /**
  124. * 自定义字段
  125. */
  126. @PreAuthorize("@ss.hasPermi('asset:information:query')")
  127. @Log(title = "资产信息字段自定义获取")
  128. @GetMapping("/getDiy")
  129. public AjaxResult getDiy()
  130. {
  131. return success(tbAssetInformationService.getDiy());
  132. }
  133. /**
  134. * 导入excel
  135. * @param file
  136. * @param updateSupport
  137. * @return
  138. * @throws Exception
  139. */
  140. @Log(title = "资产信息导入", businessType = BusinessType.IMPORT) // todo
  141. @PreAuthorize("@ss.hasPermi('asset:information:import')") // todo
  142. @PostMapping("/importData")
  143. public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception
  144. {
  145. ExcelUtil<TbAssetInformation> util = new ExcelUtil<>(TbAssetInformation.class); // todo
  146. List<TbAssetInformation> stuList = util.importExcel(file.getInputStream()); // todo
  147. String operName = getUsername();
  148. String message = tbAssetInformationService.importCon(stuList, updateSupport, operName); // todo
  149. return AjaxResult.success(message);
  150. }
  151. @PostMapping("/importTemplate")
  152. public void importTemplate(HttpServletResponse response)
  153. {
  154. ExcelUtil<TbAssetInformation> util = new ExcelUtil<>(TbAssetInformation.class); // todo
  155. util.importTemplateExcel(response, "资产信息");
  156. }
  157. }