TbAssetController.java 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. package com.ruoyi.asset.controller;
  2. import java.util.List;
  3. import javax.servlet.http.HttpServletResponse;
  4. import com.ruoyi.asset.domain.dto.TbAssetDTO;
  5. import io.swagger.annotations.Api;
  6. import io.swagger.annotations.ApiOperation;
  7. import org.springframework.security.access.prepost.PreAuthorize;
  8. import org.springframework.beans.factory.annotation.Autowired;
  9. import org.springframework.web.bind.annotation.*;
  10. import com.ruoyi.common.annotation.Log;
  11. import com.ruoyi.common.core.controller.BaseController;
  12. import com.ruoyi.common.core.domain.AjaxResult;
  13. import com.ruoyi.common.enums.BusinessType;
  14. import com.ruoyi.asset.domain.TbAsset;
  15. import com.ruoyi.asset.service.ITbAssetService;
  16. import com.ruoyi.common.utils.poi.ExcelUtil;
  17. import com.ruoyi.common.core.page.TableDataInfo;
  18. import org.springframework.web.multipart.MultipartFile;
  19. /**
  20. * 资产信息Controller
  21. *
  22. * @author 原动力
  23. * @date 2023-03-27
  24. */
  25. @Api(tags = "资产信息")
  26. @RestController
  27. @RequestMapping("/asset/asset")
  28. public class TbAssetController extends BaseController
  29. {
  30. @Autowired
  31. private ITbAssetService tbAssetService;
  32. /**
  33. * 查询资产信息列表
  34. */
  35. @ApiOperation("查询资产信息列表")
  36. @PreAuthorize("@ss.hasPermi('asset:asset:list')")
  37. @GetMapping("/list")
  38. public TableDataInfo list(TbAsset tbAsset)
  39. {
  40. startPage();
  41. List<TbAsset> list = tbAssetService.selectTbAssetList(tbAsset);
  42. return getDataTable(list);
  43. }
  44. /**
  45. * 导出资产信息列表
  46. */
  47. @ApiOperation("导出资产信息列表")
  48. @PreAuthorize("@ss.hasPermi('asset:asset:export')")
  49. @Log(title = "资产信息", businessType = BusinessType.EXPORT)
  50. @PostMapping("/export")
  51. public void export(HttpServletResponse response, TbAsset tbAsset)
  52. {
  53. List<TbAsset> list = tbAssetService.exportData(tbAsset);
  54. ExcelUtil<TbAsset> util = new ExcelUtil<TbAsset>(TbAsset.class);
  55. util.exportExcel(response, list, "资产信息数据");
  56. }
  57. /**
  58. * 导入
  59. */
  60. @ApiOperation("导入资产信息")
  61. @Log(title = "资产信息", businessType = BusinessType.IMPORT)
  62. @PreAuthorize("@ss.hasPermi('asset:asset:add')")
  63. @PostMapping("/importData")
  64. public AjaxResult importData(MultipartFile file) throws Exception {
  65. // 获取模板工具
  66. ExcelUtil<TbAsset> util = new ExcelUtil<>(TbAsset.class);
  67. List<TbAsset> tbAssets = util.importExcel(file.getInputStream());
  68. if (tbAssets.isEmpty()) {
  69. return error("数据不得为空");
  70. }
  71. boolean result = tbAssetService.batchTbAsset(tbAssets);
  72. return result ? success() : error();
  73. }
  74. @ApiOperation("资产信息模板")
  75. @PostMapping("/importTemplate")
  76. public void importTemplate(HttpServletResponse response)
  77. {
  78. ExcelUtil<TbAsset> util = new ExcelUtil<>(TbAsset.class);
  79. util.importTemplateExcel(response, "资产信息数据");
  80. }
  81. /**
  82. * 获取资产信息详细信息
  83. */
  84. @ApiOperation("获取资产信息详细信息")
  85. @PreAuthorize("@ss.hasPermi('asset:asset:query')")
  86. @GetMapping(value = "/{id}")
  87. public AjaxResult getInfo(@PathVariable("id") Long id)
  88. {
  89. return AjaxResult.success(tbAssetService.selectTbAssetById(id));
  90. }
  91. /**
  92. * 新增资产信息
  93. */
  94. @ApiOperation("新增资产信息")
  95. @PreAuthorize("@ss.hasPermi('asset:asset:add')")
  96. @Log(title = "资产信息", businessType = BusinessType.INSERT)
  97. @PostMapping
  98. public AjaxResult add(@RequestBody TbAsset tbAsset)
  99. {
  100. return toAjax(tbAssetService.insertTbAsset(tbAsset));
  101. }
  102. /**
  103. * 修改资产信息
  104. */
  105. @ApiOperation("修改资产信息")
  106. @PreAuthorize("@ss.hasPermi('asset:asset:edit')")
  107. @Log(title = "资产信息", businessType = BusinessType.UPDATE)
  108. @PutMapping
  109. public AjaxResult edit(@RequestBody TbAsset tbAsset)
  110. {
  111. return toAjax(tbAssetService.updateTbAsset(tbAsset));
  112. }
  113. /**
  114. * 删除资产信息
  115. */
  116. @ApiOperation("删除资产信息")
  117. @PreAuthorize("@ss.hasPermi('asset:asset:remove')")
  118. @Log(title = "资产信息", businessType = BusinessType.DELETE)
  119. @DeleteMapping("/{ids}")
  120. public AjaxResult remove(@PathVariable Long[] ids)
  121. {
  122. return toAjax(tbAssetService.deleteTbAssetByIds(ids));
  123. }
  124. /**
  125. * 小程序:获取资产信息
  126. */
  127. @ApiOperation("小程序:获取资产信息")
  128. @PreAuthorize("@ss.hasPermi('asset:asset:query')")
  129. @GetMapping(value = "/search")
  130. public TableDataInfo selectTbAssetByBarCode(
  131. @RequestParam(value = "barCode", required = false) String barCode,
  132. @RequestParam(value = "numberOrName", required = false) String numberOrName
  133. ) {
  134. startPage();
  135. List<TbAssetDTO> tbAssetDTOS = tbAssetService.selectTbAsset(barCode, numberOrName);
  136. return getDataTable(tbAssetDTOS);
  137. }
  138. /**
  139. * 资产信息统计
  140. */
  141. @ApiOperation("资产信息统计")
  142. @PreAuthorize("@ss.hasPermi('asset:asset:query')")
  143. @GetMapping(value = "/count")
  144. public AjaxResult countTbAsset() {
  145. return tbAssetService.countTbAsset();
  146. }
  147. }