TbLocationController.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. package com.ruoyi.asset.controller;
  2. import java.util.List;
  3. import javax.servlet.http.HttpServletResponse;
  4. import com.ruoyi.common.core.domain.TreeSelect;
  5. import io.swagger.v3.oas.annotations.Parameter;
  6. import org.springframework.security.access.prepost.PreAuthorize;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.web.bind.annotation.GetMapping;
  9. import org.springframework.web.bind.annotation.PostMapping;
  10. import org.springframework.web.bind.annotation.PutMapping;
  11. import org.springframework.web.bind.annotation.DeleteMapping;
  12. import org.springframework.web.bind.annotation.PathVariable;
  13. import org.springframework.web.bind.annotation.RequestBody;
  14. import org.springframework.web.bind.annotation.RequestMapping;
  15. import org.springframework.web.bind.annotation.RestController;
  16. import com.ruoyi.common.annotation.Log;
  17. import com.ruoyi.common.core.controller.BaseController;
  18. import com.ruoyi.common.core.domain.AjaxResult;
  19. import com.ruoyi.common.enums.BusinessType;
  20. import com.ruoyi.asset.domain.TbLocation;
  21. import com.ruoyi.asset.service.ITbLocationService;
  22. import com.ruoyi.common.utils.poi.ExcelUtil;
  23. import com.ruoyi.common.core.page.TableDataInfo;
  24. /**
  25. * 所属位置Controller
  26. *
  27. * @author 原动力
  28. * @date 2023-05-15
  29. */
  30. @RestController
  31. @RequestMapping("/asset/location")
  32. public class TbLocationController extends BaseController
  33. {
  34. @Autowired
  35. private ITbLocationService tbLocationService;
  36. /**
  37. * 查询所属位置列表
  38. */
  39. @PreAuthorize("@ss.hasPermi('asset:location:list')")
  40. @GetMapping("/list")
  41. public TableDataInfo list(TbLocation tbLocation)
  42. {
  43. startPage();
  44. List<TbLocation> list = tbLocationService.selectTbLocationList(tbLocation);
  45. return getDataTable(list);
  46. }
  47. @PostMapping("/tree")
  48. public AjaxResult tree(@RequestBody TbLocation tbLocation) {
  49. List<TbLocation> tbLocations = tbLocationService.selectTree(tbLocation);
  50. return success(tbLocations);
  51. }
  52. @GetMapping("/treeSelect")
  53. public AjaxResult treeSelect(@Parameter(name = "id") Long id) {
  54. List<TreeSelect> tbLocations = tbLocationService.selectTreeSelect(id);
  55. return success(tbLocations);
  56. }
  57. /**
  58. * 导出所属位置列表
  59. */
  60. @PreAuthorize("@ss.hasPermi('asset:location:export')")
  61. @Log(title = "所属位置", businessType = BusinessType.EXPORT)
  62. @PostMapping("/export")
  63. public void export(HttpServletResponse response, TbLocation tbLocation)
  64. {
  65. List<TbLocation> list = tbLocationService.selectTbLocationList(tbLocation);
  66. ExcelUtil<TbLocation> util = new ExcelUtil<TbLocation>(TbLocation.class);
  67. util.exportExcel(response, list, "所属位置数据");
  68. }
  69. /**
  70. * 获取所属位置详细信息
  71. */
  72. @PreAuthorize("@ss.hasPermi('asset:location:query')")
  73. @GetMapping(value = "/{id}")
  74. public AjaxResult getInfo(@PathVariable("id") Long id)
  75. {
  76. return success(tbLocationService.selectTbLocationById(id));
  77. }
  78. /**
  79. * 新增所属位置
  80. */
  81. @PreAuthorize("@ss.hasPermi('asset:location:add')")
  82. @Log(title = "所属位置", businessType = BusinessType.INSERT)
  83. @PostMapping
  84. public AjaxResult add(@RequestBody TbLocation tbLocation)
  85. {
  86. return toAjax(tbLocationService.insertTbLocation(tbLocation));
  87. }
  88. /**
  89. * 修改所属位置
  90. */
  91. @PreAuthorize("@ss.hasPermi('asset:location:edit')")
  92. @Log(title = "所属位置", businessType = BusinessType.UPDATE)
  93. @PutMapping
  94. public AjaxResult edit(@RequestBody TbLocation tbLocation)
  95. {
  96. return toAjax(tbLocationService.updateTbLocation(tbLocation));
  97. }
  98. /**
  99. * 删除所属位置
  100. */
  101. @PreAuthorize("@ss.hasPermi('asset:location:remove')")
  102. @Log(title = "所属位置", businessType = BusinessType.DELETE)
  103. @DeleteMapping("/{ids}")
  104. public AjaxResult remove(@PathVariable Long[] ids)
  105. {
  106. return toAjax(tbLocationService.deleteTbLocationByIds(ids));
  107. }
  108. }