Răsfoiți Sursa

林武泰/基础代码上传

LinWuTai 2 ani în urmă
părinte
comite
a3fc775d5d
49 a modificat fișierele cu 5541 adăugiri și 2 ștergeri
  1. 104 0
      lab-admin/src/main/java/com/ruoyi/asset/controller/TbAssetBorrowRecordController.java
  2. 104 0
      lab-admin/src/main/java/com/ruoyi/asset/controller/TbAssetCategoryController.java
  3. 104 0
      lab-admin/src/main/java/com/ruoyi/asset/controller/TbAssetController.java
  4. 104 0
      lab-admin/src/main/java/com/ruoyi/asset/controller/TbAssetStatusRecordController.java
  5. 104 0
      lab-admin/src/main/java/com/ruoyi/asset/controller/TbFaultReportController.java
  6. 104 0
      lab-admin/src/main/java/com/ruoyi/asset/controller/TbPlaceController.java
  7. 281 0
      lab-admin/src/main/java/com/ruoyi/asset/domain/TbAsset.java
  8. 141 0
      lab-admin/src/main/java/com/ruoyi/asset/domain/TbAssetBorrowRecord.java
  9. 67 0
      lab-admin/src/main/java/com/ruoyi/asset/domain/TbAssetCategory.java
  10. 97 0
      lab-admin/src/main/java/com/ruoyi/asset/domain/TbAssetStatusRecord.java
  11. 139 0
      lab-admin/src/main/java/com/ruoyi/asset/domain/TbFaultReport.java
  12. 66 0
      lab-admin/src/main/java/com/ruoyi/asset/domain/TbPlace.java
  13. 61 0
      lab-admin/src/main/java/com/ruoyi/asset/mapper/TbAssetBorrowRecordMapper.java
  14. 61 0
      lab-admin/src/main/java/com/ruoyi/asset/mapper/TbAssetCategoryMapper.java
  15. 61 0
      lab-admin/src/main/java/com/ruoyi/asset/mapper/TbAssetMapper.java
  16. 61 0
      lab-admin/src/main/java/com/ruoyi/asset/mapper/TbAssetStatusRecordMapper.java
  17. 61 0
      lab-admin/src/main/java/com/ruoyi/asset/mapper/TbFaultReportMapper.java
  18. 61 0
      lab-admin/src/main/java/com/ruoyi/asset/mapper/TbPlaceMapper.java
  19. 61 0
      lab-admin/src/main/java/com/ruoyi/asset/service/ITbAssetBorrowRecordService.java
  20. 61 0
      lab-admin/src/main/java/com/ruoyi/asset/service/ITbAssetCategoryService.java
  21. 61 0
      lab-admin/src/main/java/com/ruoyi/asset/service/ITbAssetService.java
  22. 61 0
      lab-admin/src/main/java/com/ruoyi/asset/service/ITbAssetStatusRecordService.java
  23. 61 0
      lab-admin/src/main/java/com/ruoyi/asset/service/ITbFaultReportService.java
  24. 61 0
      lab-admin/src/main/java/com/ruoyi/asset/service/ITbPlaceService.java
  25. 93 0
      lab-admin/src/main/java/com/ruoyi/asset/service/impl/TbAssetBorrowRecordServiceImpl.java
  26. 93 0
      lab-admin/src/main/java/com/ruoyi/asset/service/impl/TbAssetCategoryServiceImpl.java
  27. 93 0
      lab-admin/src/main/java/com/ruoyi/asset/service/impl/TbAssetServiceImpl.java
  28. 93 0
      lab-admin/src/main/java/com/ruoyi/asset/service/impl/TbAssetStatusRecordServiceImpl.java
  29. 93 0
      lab-admin/src/main/java/com/ruoyi/asset/service/impl/TbFaultReportServiceImpl.java
  30. 93 0
      lab-admin/src/main/java/com/ruoyi/asset/service/impl/TbPlaceServiceImpl.java
  31. 2 2
      lab-admin/src/main/resources/application-druid.yml
  32. 88 0
      lab-admin/src/main/resources/mapper/asset/TbAssetBorrowRecordMapper.xml
  33. 65 0
      lab-admin/src/main/resources/mapper/asset/TbAssetCategoryMapper.xml
  34. 138 0
      lab-admin/src/main/resources/mapper/asset/TbAssetMapper.xml
  35. 69 0
      lab-admin/src/main/resources/mapper/asset/TbAssetStatusRecordMapper.xml
  36. 84 0
      lab-admin/src/main/resources/mapper/asset/TbFaultReportMapper.xml
  37. 61 0
      lab-admin/src/main/resources/mapper/asset/TbPlaceMapper.xml
  38. 44 0
      lab-ui/src/api/asset/asset.js
  39. 44 0
      lab-ui/src/api/asset/borrow.js
  40. 44 0
      lab-ui/src/api/asset/category.js
  41. 44 0
      lab-ui/src/api/asset/fault.js
  42. 44 0
      lab-ui/src/api/asset/place.js
  43. 44 0
      lab-ui/src/api/asset/record.js
  44. 538 0
      lab-ui/src/views/asset/asset/index.vue
  45. 369 0
      lab-ui/src/views/asset/borrow/index.vue
  46. 270 0
      lab-ui/src/views/asset/category/index.vue
  47. 344 0
      lab-ui/src/views/asset/fault/index.vue
  48. 254 0
      lab-ui/src/views/asset/place/index.vue
  49. 290 0
      lab-ui/src/views/asset/record/index.vue

+ 104 - 0
lab-admin/src/main/java/com/ruoyi/asset/controller/TbAssetBorrowRecordController.java

@@ -0,0 +1,104 @@
+package com.ruoyi.asset.controller;
+
+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.asset.domain.TbAssetBorrowRecord;
+import com.ruoyi.asset.service.ITbAssetBorrowRecordService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 设备借用记录Controller
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+@RestController
+@RequestMapping("/asset/borrow")
+public class TbAssetBorrowRecordController extends BaseController
+{
+    @Autowired
+    private ITbAssetBorrowRecordService tbAssetBorrowRecordService;
+
+    /**
+     * 查询设备借用记录列表
+     */
+    @PreAuthorize("@ss.hasPermi('asset:borrow:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(TbAssetBorrowRecord tbAssetBorrowRecord)
+    {
+        startPage();
+        List<TbAssetBorrowRecord> list = tbAssetBorrowRecordService.selectTbAssetBorrowRecordList(tbAssetBorrowRecord);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出设备借用记录列表
+     */
+    @PreAuthorize("@ss.hasPermi('asset:borrow:export')")
+    @Log(title = "设备借用记录", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    public void export(HttpServletResponse response, TbAssetBorrowRecord tbAssetBorrowRecord)
+    {
+        List<TbAssetBorrowRecord> list = tbAssetBorrowRecordService.selectTbAssetBorrowRecordList(tbAssetBorrowRecord);
+        ExcelUtil<TbAssetBorrowRecord> util = new ExcelUtil<TbAssetBorrowRecord>(TbAssetBorrowRecord.class);
+        util.exportExcel(response, list, "设备借用记录数据");
+    }
+
+    /**
+     * 获取设备借用记录详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('asset:borrow:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(tbAssetBorrowRecordService.selectTbAssetBorrowRecordById(id));
+    }
+
+    /**
+     * 新增设备借用记录
+     */
+    @PreAuthorize("@ss.hasPermi('asset:borrow:add')")
+    @Log(title = "设备借用记录", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody TbAssetBorrowRecord tbAssetBorrowRecord)
+    {
+        return toAjax(tbAssetBorrowRecordService.insertTbAssetBorrowRecord(tbAssetBorrowRecord));
+    }
+
+    /**
+     * 修改设备借用记录
+     */
+    @PreAuthorize("@ss.hasPermi('asset:borrow:edit')")
+    @Log(title = "设备借用记录", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody TbAssetBorrowRecord tbAssetBorrowRecord)
+    {
+        return toAjax(tbAssetBorrowRecordService.updateTbAssetBorrowRecord(tbAssetBorrowRecord));
+    }
+
+    /**
+     * 删除设备借用记录
+     */
+    @PreAuthorize("@ss.hasPermi('asset:borrow:remove')")
+    @Log(title = "设备借用记录", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(tbAssetBorrowRecordService.deleteTbAssetBorrowRecordByIds(ids));
+    }
+}

+ 104 - 0
lab-admin/src/main/java/com/ruoyi/asset/controller/TbAssetCategoryController.java

@@ -0,0 +1,104 @@
+package com.ruoyi.asset.controller;
+
+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.asset.domain.TbAssetCategory;
+import com.ruoyi.asset.service.ITbAssetCategoryService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 资产分类Controller
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+@RestController
+@RequestMapping("/asset/category")
+public class TbAssetCategoryController extends BaseController
+{
+    @Autowired
+    private ITbAssetCategoryService tbAssetCategoryService;
+
+    /**
+     * 查询资产分类列表
+     */
+    @PreAuthorize("@ss.hasPermi('asset:category:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(TbAssetCategory tbAssetCategory)
+    {
+        startPage();
+        List<TbAssetCategory> list = tbAssetCategoryService.selectTbAssetCategoryList(tbAssetCategory);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出资产分类列表
+     */
+    @PreAuthorize("@ss.hasPermi('asset:category:export')")
+    @Log(title = "资产分类", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    public void export(HttpServletResponse response, TbAssetCategory tbAssetCategory)
+    {
+        List<TbAssetCategory> list = tbAssetCategoryService.selectTbAssetCategoryList(tbAssetCategory);
+        ExcelUtil<TbAssetCategory> util = new ExcelUtil<TbAssetCategory>(TbAssetCategory.class);
+        util.exportExcel(response, list, "资产分类数据");
+    }
+
+    /**
+     * 获取资产分类详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('asset:category:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(tbAssetCategoryService.selectTbAssetCategoryById(id));
+    }
+
+    /**
+     * 新增资产分类
+     */
+    @PreAuthorize("@ss.hasPermi('asset:category:add')")
+    @Log(title = "资产分类", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody TbAssetCategory tbAssetCategory)
+    {
+        return toAjax(tbAssetCategoryService.insertTbAssetCategory(tbAssetCategory));
+    }
+
+    /**
+     * 修改资产分类
+     */
+    @PreAuthorize("@ss.hasPermi('asset:category:edit')")
+    @Log(title = "资产分类", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody TbAssetCategory tbAssetCategory)
+    {
+        return toAjax(tbAssetCategoryService.updateTbAssetCategory(tbAssetCategory));
+    }
+
+    /**
+     * 删除资产分类
+     */
+    @PreAuthorize("@ss.hasPermi('asset:category:remove')")
+    @Log(title = "资产分类", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(tbAssetCategoryService.deleteTbAssetCategoryByIds(ids));
+    }
+}

+ 104 - 0
lab-admin/src/main/java/com/ruoyi/asset/controller/TbAssetController.java

@@ -0,0 +1,104 @@
+package com.ruoyi.asset.controller;
+
+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.asset.domain.TbAsset;
+import com.ruoyi.asset.service.ITbAssetService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 资产信息Controller
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+@RestController
+@RequestMapping("/asset/asset")
+public class TbAssetController extends BaseController
+{
+    @Autowired
+    private ITbAssetService tbAssetService;
+
+    /**
+     * 查询资产信息列表
+     */
+    @PreAuthorize("@ss.hasPermi('asset:asset:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(TbAsset tbAsset)
+    {
+        startPage();
+        List<TbAsset> list = tbAssetService.selectTbAssetList(tbAsset);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出资产信息列表
+     */
+    @PreAuthorize("@ss.hasPermi('asset:asset:export')")
+    @Log(title = "资产信息", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    public void export(HttpServletResponse response, TbAsset tbAsset)
+    {
+        List<TbAsset> list = tbAssetService.selectTbAssetList(tbAsset);
+        ExcelUtil<TbAsset> util = new ExcelUtil<TbAsset>(TbAsset.class);
+        util.exportExcel(response, list, "资产信息数据");
+    }
+
+    /**
+     * 获取资产信息详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('asset:asset:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(tbAssetService.selectTbAssetById(id));
+    }
+
+    /**
+     * 新增资产信息
+     */
+    @PreAuthorize("@ss.hasPermi('asset:asset:add')")
+    @Log(title = "资产信息", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody TbAsset tbAsset)
+    {
+        return toAjax(tbAssetService.insertTbAsset(tbAsset));
+    }
+
+    /**
+     * 修改资产信息
+     */
+    @PreAuthorize("@ss.hasPermi('asset:asset:edit')")
+    @Log(title = "资产信息", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody TbAsset tbAsset)
+    {
+        return toAjax(tbAssetService.updateTbAsset(tbAsset));
+    }
+
+    /**
+     * 删除资产信息
+     */
+    @PreAuthorize("@ss.hasPermi('asset:asset:remove')")
+    @Log(title = "资产信息", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(tbAssetService.deleteTbAssetByIds(ids));
+    }
+}

+ 104 - 0
lab-admin/src/main/java/com/ruoyi/asset/controller/TbAssetStatusRecordController.java

@@ -0,0 +1,104 @@
+package com.ruoyi.asset.controller;
+
+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.asset.domain.TbAssetStatusRecord;
+import com.ruoyi.asset.service.ITbAssetStatusRecordService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 资产设备状态记录Controller
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+@RestController
+@RequestMapping("/asset/record")
+public class TbAssetStatusRecordController extends BaseController
+{
+    @Autowired
+    private ITbAssetStatusRecordService tbAssetStatusRecordService;
+
+    /**
+     * 查询资产设备状态记录列表
+     */
+    @PreAuthorize("@ss.hasPermi('asset:record:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(TbAssetStatusRecord tbAssetStatusRecord)
+    {
+        startPage();
+        List<TbAssetStatusRecord> list = tbAssetStatusRecordService.selectTbAssetStatusRecordList(tbAssetStatusRecord);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出资产设备状态记录列表
+     */
+    @PreAuthorize("@ss.hasPermi('asset:record:export')")
+    @Log(title = "资产设备状态记录", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    public void export(HttpServletResponse response, TbAssetStatusRecord tbAssetStatusRecord)
+    {
+        List<TbAssetStatusRecord> list = tbAssetStatusRecordService.selectTbAssetStatusRecordList(tbAssetStatusRecord);
+        ExcelUtil<TbAssetStatusRecord> util = new ExcelUtil<TbAssetStatusRecord>(TbAssetStatusRecord.class);
+        util.exportExcel(response, list, "资产设备状态记录数据");
+    }
+
+    /**
+     * 获取资产设备状态记录详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('asset:record:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(tbAssetStatusRecordService.selectTbAssetStatusRecordById(id));
+    }
+
+    /**
+     * 新增资产设备状态记录
+     */
+    @PreAuthorize("@ss.hasPermi('asset:record:add')")
+    @Log(title = "资产设备状态记录", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody TbAssetStatusRecord tbAssetStatusRecord)
+    {
+        return toAjax(tbAssetStatusRecordService.insertTbAssetStatusRecord(tbAssetStatusRecord));
+    }
+
+    /**
+     * 修改资产设备状态记录
+     */
+    @PreAuthorize("@ss.hasPermi('asset:record:edit')")
+    @Log(title = "资产设备状态记录", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody TbAssetStatusRecord tbAssetStatusRecord)
+    {
+        return toAjax(tbAssetStatusRecordService.updateTbAssetStatusRecord(tbAssetStatusRecord));
+    }
+
+    /**
+     * 删除资产设备状态记录
+     */
+    @PreAuthorize("@ss.hasPermi('asset:record:remove')")
+    @Log(title = "资产设备状态记录", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(tbAssetStatusRecordService.deleteTbAssetStatusRecordByIds(ids));
+    }
+}

+ 104 - 0
lab-admin/src/main/java/com/ruoyi/asset/controller/TbFaultReportController.java

@@ -0,0 +1,104 @@
+package com.ruoyi.asset.controller;
+
+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.asset.domain.TbFaultReport;
+import com.ruoyi.asset.service.ITbFaultReportService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 故障报备Controller
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+@RestController
+@RequestMapping("/asset/fault")
+public class TbFaultReportController extends BaseController
+{
+    @Autowired
+    private ITbFaultReportService tbFaultReportService;
+
+    /**
+     * 查询故障报备列表
+     */
+    @PreAuthorize("@ss.hasPermi('asset:fault:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(TbFaultReport tbFaultReport)
+    {
+        startPage();
+        List<TbFaultReport> list = tbFaultReportService.selectTbFaultReportList(tbFaultReport);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出故障报备列表
+     */
+    @PreAuthorize("@ss.hasPermi('asset:fault:export')")
+    @Log(title = "故障报备", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    public void export(HttpServletResponse response, TbFaultReport tbFaultReport)
+    {
+        List<TbFaultReport> list = tbFaultReportService.selectTbFaultReportList(tbFaultReport);
+        ExcelUtil<TbFaultReport> util = new ExcelUtil<TbFaultReport>(TbFaultReport.class);
+        util.exportExcel(response, list, "故障报备数据");
+    }
+
+    /**
+     * 获取故障报备详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('asset:fault:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(tbFaultReportService.selectTbFaultReportById(id));
+    }
+
+    /**
+     * 新增故障报备
+     */
+    @PreAuthorize("@ss.hasPermi('asset:fault:add')")
+    @Log(title = "故障报备", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody TbFaultReport tbFaultReport)
+    {
+        return toAjax(tbFaultReportService.insertTbFaultReport(tbFaultReport));
+    }
+
+    /**
+     * 修改故障报备
+     */
+    @PreAuthorize("@ss.hasPermi('asset:fault:edit')")
+    @Log(title = "故障报备", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody TbFaultReport tbFaultReport)
+    {
+        return toAjax(tbFaultReportService.updateTbFaultReport(tbFaultReport));
+    }
+
+    /**
+     * 删除故障报备
+     */
+    @PreAuthorize("@ss.hasPermi('asset:fault:remove')")
+    @Log(title = "故障报备", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(tbFaultReportService.deleteTbFaultReportByIds(ids));
+    }
+}

+ 104 - 0
lab-admin/src/main/java/com/ruoyi/asset/controller/TbPlaceController.java

@@ -0,0 +1,104 @@
+package com.ruoyi.asset.controller;
+
+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.asset.domain.TbPlace;
+import com.ruoyi.asset.service.ITbPlaceService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 地点Controller
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+@RestController
+@RequestMapping("/asset/place")
+public class TbPlaceController extends BaseController
+{
+    @Autowired
+    private ITbPlaceService tbPlaceService;
+
+    /**
+     * 查询地点列表
+     */
+    @PreAuthorize("@ss.hasPermi('asset:place:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(TbPlace tbPlace)
+    {
+        startPage();
+        List<TbPlace> list = tbPlaceService.selectTbPlaceList(tbPlace);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出地点列表
+     */
+    @PreAuthorize("@ss.hasPermi('asset:place:export')")
+    @Log(title = "地点", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    public void export(HttpServletResponse response, TbPlace tbPlace)
+    {
+        List<TbPlace> list = tbPlaceService.selectTbPlaceList(tbPlace);
+        ExcelUtil<TbPlace> util = new ExcelUtil<TbPlace>(TbPlace.class);
+        util.exportExcel(response, list, "地点数据");
+    }
+
+    /**
+     * 获取地点详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('asset:place:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return AjaxResult.success(tbPlaceService.selectTbPlaceById(id));
+    }
+
+    /**
+     * 新增地点
+     */
+    @PreAuthorize("@ss.hasPermi('asset:place:add')")
+    @Log(title = "地点", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody TbPlace tbPlace)
+    {
+        return toAjax(tbPlaceService.insertTbPlace(tbPlace));
+    }
+
+    /**
+     * 修改地点
+     */
+    @PreAuthorize("@ss.hasPermi('asset:place:edit')")
+    @Log(title = "地点", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody TbPlace tbPlace)
+    {
+        return toAjax(tbPlaceService.updateTbPlace(tbPlace));
+    }
+
+    /**
+     * 删除地点
+     */
+    @PreAuthorize("@ss.hasPermi('asset:place:remove')")
+    @Log(title = "地点", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(tbPlaceService.deleteTbPlaceByIds(ids));
+    }
+}

+ 281 - 0
lab-admin/src/main/java/com/ruoyi/asset/domain/TbAsset.java

@@ -0,0 +1,281 @@
+package com.ruoyi.asset.domain;
+
+import java.math.BigDecimal;
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 资产信息对象 tb_asset
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public class TbAsset extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 编号 */
+    @Excel(name = "编号")
+    private Long id;
+
+    /** 条形码 */
+    @Excel(name = "条形码")
+    private String barCode;
+
+    /** 资产编号 */
+    @Excel(name = "资产编号")
+    private String number;
+
+    /** 资产名称 */
+    @Excel(name = "资产名称")
+    private String name;
+
+    /** 资产种类 */
+    @Excel(name = "资产种类")
+    private String kind;
+
+    /** 资产分类编号 */
+    @Excel(name = "资产分类编号")
+    private String categoryNumber;
+
+    /** 资产原值 */
+    @Excel(name = "资产原值")
+    private BigDecimal amount;
+
+    /** 数量 */
+    @Excel(name = "数量")
+    private Long quantity;
+
+    /** 取得时间 */
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    @Excel(name = "取得时间", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date buildDate;
+
+    /** 存放地点 */
+    @Excel(name = "存放地点")
+    private String placeName;
+
+    /** 资产用途 */
+    @Excel(name = "资产用途")
+    private String purpose;
+
+    /** 使用部门ID */
+    @Excel(name = "使用部门ID")
+    private Long deptId;
+
+    /** 登记人 */
+    @Excel(name = "登记人")
+    private String registrant;
+
+    /** 规格型号 */
+    @Excel(name = "规格型号")
+    private String specificationsModel;
+
+    /** 生产厂商 */
+    @Excel(name = "生产厂商")
+    private String manufacturer;
+
+    /** 品牌型号 */
+    @Excel(name = "品牌型号")
+    private String brand;
+
+    /** 供应商 */
+    @Excel(name = "供应商")
+    private String supplier;
+
+    /** 状态 */
+    @Excel(name = "状态")
+    private Long status;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setBarCode(String barCode) 
+    {
+        this.barCode = barCode;
+    }
+
+    public String getBarCode() 
+    {
+        return barCode;
+    }
+    public void setNumber(String number) 
+    {
+        this.number = number;
+    }
+
+    public String getNumber() 
+    {
+        return number;
+    }
+    public void setName(String name) 
+    {
+        this.name = name;
+    }
+
+    public String getName() 
+    {
+        return name;
+    }
+    public void setKind(String kind) 
+    {
+        this.kind = kind;
+    }
+
+    public String getKind() 
+    {
+        return kind;
+    }
+    public void setCategoryNumber(String categoryNumber) 
+    {
+        this.categoryNumber = categoryNumber;
+    }
+
+    public String getCategoryNumber() 
+    {
+        return categoryNumber;
+    }
+    public void setAmount(BigDecimal amount) 
+    {
+        this.amount = amount;
+    }
+
+    public BigDecimal getAmount() 
+    {
+        return amount;
+    }
+    public void setQuantity(Long quantity) 
+    {
+        this.quantity = quantity;
+    }
+
+    public Long getQuantity() 
+    {
+        return quantity;
+    }
+    public void setBuildDate(Date buildDate) 
+    {
+        this.buildDate = buildDate;
+    }
+
+    public Date getBuildDate() 
+    {
+        return buildDate;
+    }
+    public void setPlaceName(String placeName) 
+    {
+        this.placeName = placeName;
+    }
+
+    public String getPlaceName() 
+    {
+        return placeName;
+    }
+    public void setPurpose(String purpose) 
+    {
+        this.purpose = purpose;
+    }
+
+    public String getPurpose() 
+    {
+        return purpose;
+    }
+    public void setDeptId(Long deptId) 
+    {
+        this.deptId = deptId;
+    }
+
+    public Long getDeptId() 
+    {
+        return deptId;
+    }
+    public void setRegistrant(String registrant) 
+    {
+        this.registrant = registrant;
+    }
+
+    public String getRegistrant() 
+    {
+        return registrant;
+    }
+    public void setSpecificationsModel(String specificationsModel) 
+    {
+        this.specificationsModel = specificationsModel;
+    }
+
+    public String getSpecificationsModel() 
+    {
+        return specificationsModel;
+    }
+    public void setManufacturer(String manufacturer) 
+    {
+        this.manufacturer = manufacturer;
+    }
+
+    public String getManufacturer() 
+    {
+        return manufacturer;
+    }
+    public void setBrand(String brand) 
+    {
+        this.brand = brand;
+    }
+
+    public String getBrand() 
+    {
+        return brand;
+    }
+    public void setSupplier(String supplier) 
+    {
+        this.supplier = supplier;
+    }
+
+    public String getSupplier() 
+    {
+        return supplier;
+    }
+    public void setStatus(Long status) 
+    {
+        this.status = status;
+    }
+
+    public Long getStatus() 
+    {
+        return status;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("barCode", getBarCode())
+            .append("number", getNumber())
+            .append("name", getName())
+            .append("kind", getKind())
+            .append("categoryNumber", getCategoryNumber())
+            .append("amount", getAmount())
+            .append("quantity", getQuantity())
+            .append("buildDate", getBuildDate())
+            .append("placeName", getPlaceName())
+            .append("purpose", getPurpose())
+            .append("deptId", getDeptId())
+            .append("registrant", getRegistrant())
+            .append("specificationsModel", getSpecificationsModel())
+            .append("remark", getRemark())
+            .append("manufacturer", getManufacturer())
+            .append("brand", getBrand())
+            .append("supplier", getSupplier())
+            .append("status", getStatus())
+            .toString();
+    }
+}

+ 141 - 0
lab-admin/src/main/java/com/ruoyi/asset/domain/TbAssetBorrowRecord.java

@@ -0,0 +1,141 @@
+package com.ruoyi.asset.domain;
+
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 设备借用记录对象 tb_asset_borrow_record
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public class TbAssetBorrowRecord extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 记录编号 */
+    @Excel(name = "记录编号")
+    private Long id;
+
+    /** 设备条形码 */
+    @Excel(name = "设备条形码")
+    private String assetBarCode;
+
+    /** 借用人 */
+    @Excel(name = "借用人")
+    private Long userId;
+
+    /** 借用人电话 */
+    @Excel(name = "借用人电话")
+    private String tel;
+
+    /** 是否归还 */
+    @Excel(name = "是否归还")
+    private Long isreturn;
+
+    /** 借用时间 */
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    @Excel(name = "借用时间", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date borrowDate;
+
+    /** 归还时间 */
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    @Excel(name = "归还时间", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date returnDate;
+
+    /** 借用地点 */
+    @Excel(name = "借用地点")
+    private String borrowPlaceName;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setAssetBarCode(String assetBarCode) 
+    {
+        this.assetBarCode = assetBarCode;
+    }
+
+    public String getAssetBarCode() 
+    {
+        return assetBarCode;
+    }
+    public void setUserId(Long userId) 
+    {
+        this.userId = userId;
+    }
+
+    public Long getUserId() 
+    {
+        return userId;
+    }
+    public void setTel(String tel) 
+    {
+        this.tel = tel;
+    }
+
+    public String getTel() 
+    {
+        return tel;
+    }
+    public void setIsreturn(Long isreturn) 
+    {
+        this.isreturn = isreturn;
+    }
+
+    public Long getIsreturn() 
+    {
+        return isreturn;
+    }
+    public void setBorrowDate(Date borrowDate) 
+    {
+        this.borrowDate = borrowDate;
+    }
+
+    public Date getBorrowDate() 
+    {
+        return borrowDate;
+    }
+    public void setReturnDate(Date returnDate) 
+    {
+        this.returnDate = returnDate;
+    }
+
+    public Date getReturnDate() 
+    {
+        return returnDate;
+    }
+    public void setBorrowPlaceName(String borrowPlaceName) 
+    {
+        this.borrowPlaceName = borrowPlaceName;
+    }
+
+    public String getBorrowPlaceName() 
+    {
+        return borrowPlaceName;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("assetBarCode", getAssetBarCode())
+            .append("userId", getUserId())
+            .append("tel", getTel())
+            .append("isreturn", getIsreturn())
+            .append("borrowDate", getBorrowDate())
+            .append("returnDate", getReturnDate())
+            .append("borrowPlaceName", getBorrowPlaceName())
+            .append("remark", getRemark())
+            .toString();
+    }
+}

+ 67 - 0
lab-admin/src/main/java/com/ruoyi/asset/domain/TbAssetCategory.java

@@ -0,0 +1,67 @@
+package com.ruoyi.asset.domain;
+
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 资产分类对象 tb_asset_category
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public class TbAssetCategory extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 编号 */
+    @Excel(name = "编号")
+    private Long id;
+
+    /** 资产分类编号 */
+    @Excel(name = "资产分类编号")
+    private String number;
+
+    /** 资产分类名称 */
+    @Excel(name = "资产分类名称")
+    private String name;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setNumber(String number) 
+    {
+        this.number = number;
+    }
+
+    public String getNumber() 
+    {
+        return number;
+    }
+    public void setName(String name) 
+    {
+        this.name = name;
+    }
+
+    public String getName() 
+    {
+        return name;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("number", getNumber())
+            .append("name", getName())
+            .append("remark", getRemark())
+            .toString();
+    }
+}

+ 97 - 0
lab-admin/src/main/java/com/ruoyi/asset/domain/TbAssetStatusRecord.java

@@ -0,0 +1,97 @@
+package com.ruoyi.asset.domain;
+
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 资产设备状态记录对象 tb_asset_status_record
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public class TbAssetStatusRecord extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 记录编号 */
+    @Excel(name = "记录编号")
+    private Long id;
+
+    /** 设备条形码 */
+    @Excel(name = "设备条形码")
+    private String assetBarCode;
+
+    /** 借用次数 */
+    @Excel(name = "借用次数")
+    private Long borrowNumber;
+
+    /** 故障次数 */
+    @Excel(name = "故障次数")
+    private Long faultNumber;
+
+    /** 最近故障时间 */
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    @Excel(name = "最近故障时间", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date lastFaultDate;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setAssetBarCode(String assetBarCode) 
+    {
+        this.assetBarCode = assetBarCode;
+    }
+
+    public String getAssetBarCode() 
+    {
+        return assetBarCode;
+    }
+    public void setBorrowNumber(Long borrowNumber) 
+    {
+        this.borrowNumber = borrowNumber;
+    }
+
+    public Long getBorrowNumber() 
+    {
+        return borrowNumber;
+    }
+    public void setFaultNumber(Long faultNumber) 
+    {
+        this.faultNumber = faultNumber;
+    }
+
+    public Long getFaultNumber() 
+    {
+        return faultNumber;
+    }
+    public void setLastFaultDate(Date lastFaultDate) 
+    {
+        this.lastFaultDate = lastFaultDate;
+    }
+
+    public Date getLastFaultDate() 
+    {
+        return lastFaultDate;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("assetBarCode", getAssetBarCode())
+            .append("borrowNumber", getBorrowNumber())
+            .append("faultNumber", getFaultNumber())
+            .append("lastFaultDate", getLastFaultDate())
+            .toString();
+    }
+}

+ 139 - 0
lab-admin/src/main/java/com/ruoyi/asset/domain/TbFaultReport.java

@@ -0,0 +1,139 @@
+package com.ruoyi.asset.domain;
+
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 故障报备对象 tb_fault_report
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public class TbFaultReport extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 报备编号 */
+    @Excel(name = "报备编号")
+    private Long id;
+
+    /** 设备条形码 */
+    @Excel(name = "设备条形码")
+    private String assetBarCode;
+
+    /** 报备人 */
+    @Excel(name = "报备人")
+    private Long userId;
+
+    /** 报备时间 */
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    @Excel(name = "报备时间", width = 30, dateFormat = "yyyy-MM-dd")
+    private Date reportDate;
+
+    /** 故障现象 */
+    @Excel(name = "故障现象")
+    private String faultPhenomenon;
+
+    /** 报备人电话 */
+    @Excel(name = "报备人电话")
+    private String tel;
+
+    /** 处理状态 */
+    @Excel(name = "处理状态")
+    private Long processState;
+
+    /** 处理结果 */
+    @Excel(name = "处理结果")
+    private String processResult;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setAssetBarCode(String assetBarCode) 
+    {
+        this.assetBarCode = assetBarCode;
+    }
+
+    public String getAssetBarCode() 
+    {
+        return assetBarCode;
+    }
+    public void setUserId(Long userId) 
+    {
+        this.userId = userId;
+    }
+
+    public Long getUserId() 
+    {
+        return userId;
+    }
+    public void setReportDate(Date reportDate) 
+    {
+        this.reportDate = reportDate;
+    }
+
+    public Date getReportDate() 
+    {
+        return reportDate;
+    }
+    public void setFaultPhenomenon(String faultPhenomenon) 
+    {
+        this.faultPhenomenon = faultPhenomenon;
+    }
+
+    public String getFaultPhenomenon() 
+    {
+        return faultPhenomenon;
+    }
+    public void setTel(String tel) 
+    {
+        this.tel = tel;
+    }
+
+    public String getTel() 
+    {
+        return tel;
+    }
+    public void setProcessState(Long processState) 
+    {
+        this.processState = processState;
+    }
+
+    public Long getProcessState() 
+    {
+        return processState;
+    }
+    public void setProcessResult(String processResult) 
+    {
+        this.processResult = processResult;
+    }
+
+    public String getProcessResult() 
+    {
+        return processResult;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("assetBarCode", getAssetBarCode())
+            .append("userId", getUserId())
+            .append("reportDate", getReportDate())
+            .append("faultPhenomenon", getFaultPhenomenon())
+            .append("tel", getTel())
+            .append("processState", getProcessState())
+            .append("processResult", getProcessResult())
+            .toString();
+    }
+}

+ 66 - 0
lab-admin/src/main/java/com/ruoyi/asset/domain/TbPlace.java

@@ -0,0 +1,66 @@
+package com.ruoyi.asset.domain;
+
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 地点对象 tb_place
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public class TbPlace extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 编号 */
+    @Excel(name = "编号")
+    private Long id;
+
+    /** 地点名称 */
+    @Excel(name = "地点名称")
+    private String name;
+
+    /** 用途 */
+    @Excel(name = "用途")
+    private String purpose;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setName(String name) 
+    {
+        this.name = name;
+    }
+
+    public String getName() 
+    {
+        return name;
+    }
+    public void setPurpose(String purpose) 
+    {
+        this.purpose = purpose;
+    }
+
+    public String getPurpose() 
+    {
+        return purpose;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("name", getName())
+            .append("purpose", getPurpose())
+            .toString();
+    }
+}

+ 61 - 0
lab-admin/src/main/java/com/ruoyi/asset/mapper/TbAssetBorrowRecordMapper.java

@@ -0,0 +1,61 @@
+package com.ruoyi.asset.mapper;
+
+import java.util.List;
+import com.ruoyi.asset.domain.TbAssetBorrowRecord;
+
+/**
+ * 设备借用记录Mapper接口
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public interface TbAssetBorrowRecordMapper 
+{
+    /**
+     * 查询设备借用记录
+     * 
+     * @param id 设备借用记录主键
+     * @return 设备借用记录
+     */
+    public TbAssetBorrowRecord selectTbAssetBorrowRecordById(Long id);
+
+    /**
+     * 查询设备借用记录列表
+     * 
+     * @param tbAssetBorrowRecord 设备借用记录
+     * @return 设备借用记录集合
+     */
+    public List<TbAssetBorrowRecord> selectTbAssetBorrowRecordList(TbAssetBorrowRecord tbAssetBorrowRecord);
+
+    /**
+     * 新增设备借用记录
+     * 
+     * @param tbAssetBorrowRecord 设备借用记录
+     * @return 结果
+     */
+    public int insertTbAssetBorrowRecord(TbAssetBorrowRecord tbAssetBorrowRecord);
+
+    /**
+     * 修改设备借用记录
+     * 
+     * @param tbAssetBorrowRecord 设备借用记录
+     * @return 结果
+     */
+    public int updateTbAssetBorrowRecord(TbAssetBorrowRecord tbAssetBorrowRecord);
+
+    /**
+     * 删除设备借用记录
+     * 
+     * @param id 设备借用记录主键
+     * @return 结果
+     */
+    public int deleteTbAssetBorrowRecordById(Long id);
+
+    /**
+     * 批量删除设备借用记录
+     * 
+     * @param ids 需要删除的数据主键集合
+     * @return 结果
+     */
+    public int deleteTbAssetBorrowRecordByIds(Long[] ids);
+}

+ 61 - 0
lab-admin/src/main/java/com/ruoyi/asset/mapper/TbAssetCategoryMapper.java

@@ -0,0 +1,61 @@
+package com.ruoyi.asset.mapper;
+
+import java.util.List;
+import com.ruoyi.asset.domain.TbAssetCategory;
+
+/**
+ * 资产分类Mapper接口
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public interface TbAssetCategoryMapper 
+{
+    /**
+     * 查询资产分类
+     * 
+     * @param id 资产分类主键
+     * @return 资产分类
+     */
+    public TbAssetCategory selectTbAssetCategoryById(Long id);
+
+    /**
+     * 查询资产分类列表
+     * 
+     * @param tbAssetCategory 资产分类
+     * @return 资产分类集合
+     */
+    public List<TbAssetCategory> selectTbAssetCategoryList(TbAssetCategory tbAssetCategory);
+
+    /**
+     * 新增资产分类
+     * 
+     * @param tbAssetCategory 资产分类
+     * @return 结果
+     */
+    public int insertTbAssetCategory(TbAssetCategory tbAssetCategory);
+
+    /**
+     * 修改资产分类
+     * 
+     * @param tbAssetCategory 资产分类
+     * @return 结果
+     */
+    public int updateTbAssetCategory(TbAssetCategory tbAssetCategory);
+
+    /**
+     * 删除资产分类
+     * 
+     * @param id 资产分类主键
+     * @return 结果
+     */
+    public int deleteTbAssetCategoryById(Long id);
+
+    /**
+     * 批量删除资产分类
+     * 
+     * @param ids 需要删除的数据主键集合
+     * @return 结果
+     */
+    public int deleteTbAssetCategoryByIds(Long[] ids);
+}

+ 61 - 0
lab-admin/src/main/java/com/ruoyi/asset/mapper/TbAssetMapper.java

@@ -0,0 +1,61 @@
+package com.ruoyi.asset.mapper;
+
+import java.util.List;
+import com.ruoyi.asset.domain.TbAsset;
+
+/**
+ * 资产信息Mapper接口
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public interface TbAssetMapper 
+{
+    /**
+     * 查询资产信息
+     * 
+     * @param id 资产信息主键
+     * @return 资产信息
+     */
+    public TbAsset selectTbAssetById(Long id);
+
+    /**
+     * 查询资产信息列表
+     * 
+     * @param tbAsset 资产信息
+     * @return 资产信息集合
+     */
+    public List<TbAsset> selectTbAssetList(TbAsset tbAsset);
+
+    /**
+     * 新增资产信息
+     * 
+     * @param tbAsset 资产信息
+     * @return 结果
+     */
+    public int insertTbAsset(TbAsset tbAsset);
+
+    /**
+     * 修改资产信息
+     * 
+     * @param tbAsset 资产信息
+     * @return 结果
+     */
+    public int updateTbAsset(TbAsset tbAsset);
+
+    /**
+     * 删除资产信息
+     * 
+     * @param id 资产信息主键
+     * @return 结果
+     */
+    public int deleteTbAssetById(Long id);
+
+    /**
+     * 批量删除资产信息
+     * 
+     * @param ids 需要删除的数据主键集合
+     * @return 结果
+     */
+    public int deleteTbAssetByIds(Long[] ids);
+}

+ 61 - 0
lab-admin/src/main/java/com/ruoyi/asset/mapper/TbAssetStatusRecordMapper.java

@@ -0,0 +1,61 @@
+package com.ruoyi.asset.mapper;
+
+import java.util.List;
+import com.ruoyi.asset.domain.TbAssetStatusRecord;
+
+/**
+ * 资产设备状态记录Mapper接口
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public interface TbAssetStatusRecordMapper 
+{
+    /**
+     * 查询资产设备状态记录
+     * 
+     * @param id 资产设备状态记录主键
+     * @return 资产设备状态记录
+     */
+    public TbAssetStatusRecord selectTbAssetStatusRecordById(Long id);
+
+    /**
+     * 查询资产设备状态记录列表
+     * 
+     * @param tbAssetStatusRecord 资产设备状态记录
+     * @return 资产设备状态记录集合
+     */
+    public List<TbAssetStatusRecord> selectTbAssetStatusRecordList(TbAssetStatusRecord tbAssetStatusRecord);
+
+    /**
+     * 新增资产设备状态记录
+     * 
+     * @param tbAssetStatusRecord 资产设备状态记录
+     * @return 结果
+     */
+    public int insertTbAssetStatusRecord(TbAssetStatusRecord tbAssetStatusRecord);
+
+    /**
+     * 修改资产设备状态记录
+     * 
+     * @param tbAssetStatusRecord 资产设备状态记录
+     * @return 结果
+     */
+    public int updateTbAssetStatusRecord(TbAssetStatusRecord tbAssetStatusRecord);
+
+    /**
+     * 删除资产设备状态记录
+     * 
+     * @param id 资产设备状态记录主键
+     * @return 结果
+     */
+    public int deleteTbAssetStatusRecordById(Long id);
+
+    /**
+     * 批量删除资产设备状态记录
+     * 
+     * @param ids 需要删除的数据主键集合
+     * @return 结果
+     */
+    public int deleteTbAssetStatusRecordByIds(Long[] ids);
+}

+ 61 - 0
lab-admin/src/main/java/com/ruoyi/asset/mapper/TbFaultReportMapper.java

@@ -0,0 +1,61 @@
+package com.ruoyi.asset.mapper;
+
+import java.util.List;
+import com.ruoyi.asset.domain.TbFaultReport;
+
+/**
+ * 故障报备Mapper接口
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public interface TbFaultReportMapper 
+{
+    /**
+     * 查询故障报备
+     * 
+     * @param id 故障报备主键
+     * @return 故障报备
+     */
+    public TbFaultReport selectTbFaultReportById(Long id);
+
+    /**
+     * 查询故障报备列表
+     * 
+     * @param tbFaultReport 故障报备
+     * @return 故障报备集合
+     */
+    public List<TbFaultReport> selectTbFaultReportList(TbFaultReport tbFaultReport);
+
+    /**
+     * 新增故障报备
+     * 
+     * @param tbFaultReport 故障报备
+     * @return 结果
+     */
+    public int insertTbFaultReport(TbFaultReport tbFaultReport);
+
+    /**
+     * 修改故障报备
+     * 
+     * @param tbFaultReport 故障报备
+     * @return 结果
+     */
+    public int updateTbFaultReport(TbFaultReport tbFaultReport);
+
+    /**
+     * 删除故障报备
+     * 
+     * @param id 故障报备主键
+     * @return 结果
+     */
+    public int deleteTbFaultReportById(Long id);
+
+    /**
+     * 批量删除故障报备
+     * 
+     * @param ids 需要删除的数据主键集合
+     * @return 结果
+     */
+    public int deleteTbFaultReportByIds(Long[] ids);
+}

+ 61 - 0
lab-admin/src/main/java/com/ruoyi/asset/mapper/TbPlaceMapper.java

@@ -0,0 +1,61 @@
+package com.ruoyi.asset.mapper;
+
+import java.util.List;
+import com.ruoyi.asset.domain.TbPlace;
+
+/**
+ * 地点Mapper接口
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public interface TbPlaceMapper 
+{
+    /**
+     * 查询地点
+     * 
+     * @param id 地点主键
+     * @return 地点
+     */
+    public TbPlace selectTbPlaceById(Long id);
+
+    /**
+     * 查询地点列表
+     * 
+     * @param tbPlace 地点
+     * @return 地点集合
+     */
+    public List<TbPlace> selectTbPlaceList(TbPlace tbPlace);
+
+    /**
+     * 新增地点
+     * 
+     * @param tbPlace 地点
+     * @return 结果
+     */
+    public int insertTbPlace(TbPlace tbPlace);
+
+    /**
+     * 修改地点
+     * 
+     * @param tbPlace 地点
+     * @return 结果
+     */
+    public int updateTbPlace(TbPlace tbPlace);
+
+    /**
+     * 删除地点
+     * 
+     * @param id 地点主键
+     * @return 结果
+     */
+    public int deleteTbPlaceById(Long id);
+
+    /**
+     * 批量删除地点
+     * 
+     * @param ids 需要删除的数据主键集合
+     * @return 结果
+     */
+    public int deleteTbPlaceByIds(Long[] ids);
+}

+ 61 - 0
lab-admin/src/main/java/com/ruoyi/asset/service/ITbAssetBorrowRecordService.java

@@ -0,0 +1,61 @@
+package com.ruoyi.asset.service;
+
+import java.util.List;
+import com.ruoyi.asset.domain.TbAssetBorrowRecord;
+
+/**
+ * 设备借用记录Service接口
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public interface ITbAssetBorrowRecordService 
+{
+    /**
+     * 查询设备借用记录
+     * 
+     * @param id 设备借用记录主键
+     * @return 设备借用记录
+     */
+    public TbAssetBorrowRecord selectTbAssetBorrowRecordById(Long id);
+
+    /**
+     * 查询设备借用记录列表
+     * 
+     * @param tbAssetBorrowRecord 设备借用记录
+     * @return 设备借用记录集合
+     */
+    public List<TbAssetBorrowRecord> selectTbAssetBorrowRecordList(TbAssetBorrowRecord tbAssetBorrowRecord);
+
+    /**
+     * 新增设备借用记录
+     * 
+     * @param tbAssetBorrowRecord 设备借用记录
+     * @return 结果
+     */
+    public int insertTbAssetBorrowRecord(TbAssetBorrowRecord tbAssetBorrowRecord);
+
+    /**
+     * 修改设备借用记录
+     * 
+     * @param tbAssetBorrowRecord 设备借用记录
+     * @return 结果
+     */
+    public int updateTbAssetBorrowRecord(TbAssetBorrowRecord tbAssetBorrowRecord);
+
+    /**
+     * 批量删除设备借用记录
+     * 
+     * @param ids 需要删除的设备借用记录主键集合
+     * @return 结果
+     */
+    public int deleteTbAssetBorrowRecordByIds(Long[] ids);
+
+    /**
+     * 删除设备借用记录信息
+     * 
+     * @param id 设备借用记录主键
+     * @return 结果
+     */
+    public int deleteTbAssetBorrowRecordById(Long id);
+}

+ 61 - 0
lab-admin/src/main/java/com/ruoyi/asset/service/ITbAssetCategoryService.java

@@ -0,0 +1,61 @@
+package com.ruoyi.asset.service;
+
+import java.util.List;
+import com.ruoyi.asset.domain.TbAssetCategory;
+
+/**
+ * 资产分类Service接口
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public interface ITbAssetCategoryService 
+{
+    /**
+     * 查询资产分类
+     * 
+     * @param id 资产分类主键
+     * @return 资产分类
+     */
+    public TbAssetCategory selectTbAssetCategoryById(Long id);
+
+    /**
+     * 查询资产分类列表
+     * 
+     * @param tbAssetCategory 资产分类
+     * @return 资产分类集合
+     */
+    public List<TbAssetCategory> selectTbAssetCategoryList(TbAssetCategory tbAssetCategory);
+
+    /**
+     * 新增资产分类
+     * 
+     * @param tbAssetCategory 资产分类
+     * @return 结果
+     */
+    public int insertTbAssetCategory(TbAssetCategory tbAssetCategory);
+
+    /**
+     * 修改资产分类
+     * 
+     * @param tbAssetCategory 资产分类
+     * @return 结果
+     */
+    public int updateTbAssetCategory(TbAssetCategory tbAssetCategory);
+
+    /**
+     * 批量删除资产分类
+     * 
+     * @param ids 需要删除的资产分类主键集合
+     * @return 结果
+     */
+    public int deleteTbAssetCategoryByIds(Long[] ids);
+
+    /**
+     * 删除资产分类信息
+     * 
+     * @param id 资产分类主键
+     * @return 结果
+     */
+    public int deleteTbAssetCategoryById(Long id);
+}

+ 61 - 0
lab-admin/src/main/java/com/ruoyi/asset/service/ITbAssetService.java

@@ -0,0 +1,61 @@
+package com.ruoyi.asset.service;
+
+import java.util.List;
+import com.ruoyi.asset.domain.TbAsset;
+
+/**
+ * 资产信息Service接口
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public interface ITbAssetService 
+{
+    /**
+     * 查询资产信息
+     * 
+     * @param id 资产信息主键
+     * @return 资产信息
+     */
+    public TbAsset selectTbAssetById(Long id);
+
+    /**
+     * 查询资产信息列表
+     * 
+     * @param tbAsset 资产信息
+     * @return 资产信息集合
+     */
+    public List<TbAsset> selectTbAssetList(TbAsset tbAsset);
+
+    /**
+     * 新增资产信息
+     * 
+     * @param tbAsset 资产信息
+     * @return 结果
+     */
+    public int insertTbAsset(TbAsset tbAsset);
+
+    /**
+     * 修改资产信息
+     * 
+     * @param tbAsset 资产信息
+     * @return 结果
+     */
+    public int updateTbAsset(TbAsset tbAsset);
+
+    /**
+     * 批量删除资产信息
+     * 
+     * @param ids 需要删除的资产信息主键集合
+     * @return 结果
+     */
+    public int deleteTbAssetByIds(Long[] ids);
+
+    /**
+     * 删除资产信息信息
+     * 
+     * @param id 资产信息主键
+     * @return 结果
+     */
+    public int deleteTbAssetById(Long id);
+}

+ 61 - 0
lab-admin/src/main/java/com/ruoyi/asset/service/ITbAssetStatusRecordService.java

@@ -0,0 +1,61 @@
+package com.ruoyi.asset.service;
+
+import java.util.List;
+import com.ruoyi.asset.domain.TbAssetStatusRecord;
+
+/**
+ * 资产设备状态记录Service接口
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public interface ITbAssetStatusRecordService 
+{
+    /**
+     * 查询资产设备状态记录
+     * 
+     * @param id 资产设备状态记录主键
+     * @return 资产设备状态记录
+     */
+    public TbAssetStatusRecord selectTbAssetStatusRecordById(Long id);
+
+    /**
+     * 查询资产设备状态记录列表
+     * 
+     * @param tbAssetStatusRecord 资产设备状态记录
+     * @return 资产设备状态记录集合
+     */
+    public List<TbAssetStatusRecord> selectTbAssetStatusRecordList(TbAssetStatusRecord tbAssetStatusRecord);
+
+    /**
+     * 新增资产设备状态记录
+     * 
+     * @param tbAssetStatusRecord 资产设备状态记录
+     * @return 结果
+     */
+    public int insertTbAssetStatusRecord(TbAssetStatusRecord tbAssetStatusRecord);
+
+    /**
+     * 修改资产设备状态记录
+     * 
+     * @param tbAssetStatusRecord 资产设备状态记录
+     * @return 结果
+     */
+    public int updateTbAssetStatusRecord(TbAssetStatusRecord tbAssetStatusRecord);
+
+    /**
+     * 批量删除资产设备状态记录
+     * 
+     * @param ids 需要删除的资产设备状态记录主键集合
+     * @return 结果
+     */
+    public int deleteTbAssetStatusRecordByIds(Long[] ids);
+
+    /**
+     * 删除资产设备状态记录信息
+     * 
+     * @param id 资产设备状态记录主键
+     * @return 结果
+     */
+    public int deleteTbAssetStatusRecordById(Long id);
+}

+ 61 - 0
lab-admin/src/main/java/com/ruoyi/asset/service/ITbFaultReportService.java

@@ -0,0 +1,61 @@
+package com.ruoyi.asset.service;
+
+import java.util.List;
+import com.ruoyi.asset.domain.TbFaultReport;
+
+/**
+ * 故障报备Service接口
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public interface ITbFaultReportService 
+{
+    /**
+     * 查询故障报备
+     * 
+     * @param id 故障报备主键
+     * @return 故障报备
+     */
+    public TbFaultReport selectTbFaultReportById(Long id);
+
+    /**
+     * 查询故障报备列表
+     * 
+     * @param tbFaultReport 故障报备
+     * @return 故障报备集合
+     */
+    public List<TbFaultReport> selectTbFaultReportList(TbFaultReport tbFaultReport);
+
+    /**
+     * 新增故障报备
+     * 
+     * @param tbFaultReport 故障报备
+     * @return 结果
+     */
+    public int insertTbFaultReport(TbFaultReport tbFaultReport);
+
+    /**
+     * 修改故障报备
+     * 
+     * @param tbFaultReport 故障报备
+     * @return 结果
+     */
+    public int updateTbFaultReport(TbFaultReport tbFaultReport);
+
+    /**
+     * 批量删除故障报备
+     * 
+     * @param ids 需要删除的故障报备主键集合
+     * @return 结果
+     */
+    public int deleteTbFaultReportByIds(Long[] ids);
+
+    /**
+     * 删除故障报备信息
+     * 
+     * @param id 故障报备主键
+     * @return 结果
+     */
+    public int deleteTbFaultReportById(Long id);
+}

+ 61 - 0
lab-admin/src/main/java/com/ruoyi/asset/service/ITbPlaceService.java

@@ -0,0 +1,61 @@
+package com.ruoyi.asset.service;
+
+import java.util.List;
+import com.ruoyi.asset.domain.TbPlace;
+
+/**
+ * 地点Service接口
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+public interface ITbPlaceService 
+{
+    /**
+     * 查询地点
+     * 
+     * @param id 地点主键
+     * @return 地点
+     */
+    public TbPlace selectTbPlaceById(Long id);
+
+    /**
+     * 查询地点列表
+     * 
+     * @param tbPlace 地点
+     * @return 地点集合
+     */
+    public List<TbPlace> selectTbPlaceList(TbPlace tbPlace);
+
+    /**
+     * 新增地点
+     * 
+     * @param tbPlace 地点
+     * @return 结果
+     */
+    public int insertTbPlace(TbPlace tbPlace);
+
+    /**
+     * 修改地点
+     * 
+     * @param tbPlace 地点
+     * @return 结果
+     */
+    public int updateTbPlace(TbPlace tbPlace);
+
+    /**
+     * 批量删除地点
+     * 
+     * @param ids 需要删除的地点主键集合
+     * @return 结果
+     */
+    public int deleteTbPlaceByIds(Long[] ids);
+
+    /**
+     * 删除地点信息
+     * 
+     * @param id 地点主键
+     * @return 结果
+     */
+    public int deleteTbPlaceById(Long id);
+}

+ 93 - 0
lab-admin/src/main/java/com/ruoyi/asset/service/impl/TbAssetBorrowRecordServiceImpl.java

@@ -0,0 +1,93 @@
+package com.ruoyi.asset.service.impl;
+
+import java.util.List;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.asset.mapper.TbAssetBorrowRecordMapper;
+import com.ruoyi.asset.domain.TbAssetBorrowRecord;
+import com.ruoyi.asset.service.ITbAssetBorrowRecordService;
+
+/**
+ * 设备借用记录Service业务层处理
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+@Service
+public class TbAssetBorrowRecordServiceImpl implements ITbAssetBorrowRecordService 
+{
+    @Autowired
+    private TbAssetBorrowRecordMapper tbAssetBorrowRecordMapper;
+
+    /**
+     * 查询设备借用记录
+     * 
+     * @param id 设备借用记录主键
+     * @return 设备借用记录
+     */
+    @Override
+    public TbAssetBorrowRecord selectTbAssetBorrowRecordById(Long id)
+    {
+        return tbAssetBorrowRecordMapper.selectTbAssetBorrowRecordById(id);
+    }
+
+    /**
+     * 查询设备借用记录列表
+     * 
+     * @param tbAssetBorrowRecord 设备借用记录
+     * @return 设备借用记录
+     */
+    @Override
+    public List<TbAssetBorrowRecord> selectTbAssetBorrowRecordList(TbAssetBorrowRecord tbAssetBorrowRecord)
+    {
+        return tbAssetBorrowRecordMapper.selectTbAssetBorrowRecordList(tbAssetBorrowRecord);
+    }
+
+    /**
+     * 新增设备借用记录
+     * 
+     * @param tbAssetBorrowRecord 设备借用记录
+     * @return 结果
+     */
+    @Override
+    public int insertTbAssetBorrowRecord(TbAssetBorrowRecord tbAssetBorrowRecord)
+    {
+        return tbAssetBorrowRecordMapper.insertTbAssetBorrowRecord(tbAssetBorrowRecord);
+    }
+
+    /**
+     * 修改设备借用记录
+     * 
+     * @param tbAssetBorrowRecord 设备借用记录
+     * @return 结果
+     */
+    @Override
+    public int updateTbAssetBorrowRecord(TbAssetBorrowRecord tbAssetBorrowRecord)
+    {
+        return tbAssetBorrowRecordMapper.updateTbAssetBorrowRecord(tbAssetBorrowRecord);
+    }
+
+    /**
+     * 批量删除设备借用记录
+     * 
+     * @param ids 需要删除的设备借用记录主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbAssetBorrowRecordByIds(Long[] ids)
+    {
+        return tbAssetBorrowRecordMapper.deleteTbAssetBorrowRecordByIds(ids);
+    }
+
+    /**
+     * 删除设备借用记录信息
+     * 
+     * @param id 设备借用记录主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbAssetBorrowRecordById(Long id)
+    {
+        return tbAssetBorrowRecordMapper.deleteTbAssetBorrowRecordById(id);
+    }
+}

+ 93 - 0
lab-admin/src/main/java/com/ruoyi/asset/service/impl/TbAssetCategoryServiceImpl.java

@@ -0,0 +1,93 @@
+package com.ruoyi.asset.service.impl;
+
+import java.util.List;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.asset.mapper.TbAssetCategoryMapper;
+import com.ruoyi.asset.domain.TbAssetCategory;
+import com.ruoyi.asset.service.ITbAssetCategoryService;
+
+/**
+ * 资产分类Service业务层处理
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+@Service
+public class TbAssetCategoryServiceImpl implements ITbAssetCategoryService 
+{
+    @Autowired
+    private TbAssetCategoryMapper tbAssetCategoryMapper;
+
+    /**
+     * 查询资产分类
+     * 
+     * @param id 资产分类主键
+     * @return 资产分类
+     */
+    @Override
+    public TbAssetCategory selectTbAssetCategoryById(Long id)
+    {
+        return tbAssetCategoryMapper.selectTbAssetCategoryById(id);
+    }
+
+    /**
+     * 查询资产分类列表
+     * 
+     * @param tbAssetCategory 资产分类
+     * @return 资产分类
+     */
+    @Override
+    public List<TbAssetCategory> selectTbAssetCategoryList(TbAssetCategory tbAssetCategory)
+    {
+        return tbAssetCategoryMapper.selectTbAssetCategoryList(tbAssetCategory);
+    }
+
+    /**
+     * 新增资产分类
+     * 
+     * @param tbAssetCategory 资产分类
+     * @return 结果
+     */
+    @Override
+    public int insertTbAssetCategory(TbAssetCategory tbAssetCategory)
+    {
+        return tbAssetCategoryMapper.insertTbAssetCategory(tbAssetCategory);
+    }
+
+    /**
+     * 修改资产分类
+     * 
+     * @param tbAssetCategory 资产分类
+     * @return 结果
+     */
+    @Override
+    public int updateTbAssetCategory(TbAssetCategory tbAssetCategory)
+    {
+        return tbAssetCategoryMapper.updateTbAssetCategory(tbAssetCategory);
+    }
+
+    /**
+     * 批量删除资产分类
+     * 
+     * @param ids 需要删除的资产分类主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbAssetCategoryByIds(Long[] ids)
+    {
+        return tbAssetCategoryMapper.deleteTbAssetCategoryByIds(ids);
+    }
+
+    /**
+     * 删除资产分类信息
+     * 
+     * @param id 资产分类主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbAssetCategoryById(Long id)
+    {
+        return tbAssetCategoryMapper.deleteTbAssetCategoryById(id);
+    }
+}

+ 93 - 0
lab-admin/src/main/java/com/ruoyi/asset/service/impl/TbAssetServiceImpl.java

@@ -0,0 +1,93 @@
+package com.ruoyi.asset.service.impl;
+
+import java.util.List;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.asset.mapper.TbAssetMapper;
+import com.ruoyi.asset.domain.TbAsset;
+import com.ruoyi.asset.service.ITbAssetService;
+
+/**
+ * 资产信息Service业务层处理
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+@Service
+public class TbAssetServiceImpl implements ITbAssetService 
+{
+    @Autowired
+    private TbAssetMapper tbAssetMapper;
+
+    /**
+     * 查询资产信息
+     * 
+     * @param id 资产信息主键
+     * @return 资产信息
+     */
+    @Override
+    public TbAsset selectTbAssetById(Long id)
+    {
+        return tbAssetMapper.selectTbAssetById(id);
+    }
+
+    /**
+     * 查询资产信息列表
+     * 
+     * @param tbAsset 资产信息
+     * @return 资产信息
+     */
+    @Override
+    public List<TbAsset> selectTbAssetList(TbAsset tbAsset)
+    {
+        return tbAssetMapper.selectTbAssetList(tbAsset);
+    }
+
+    /**
+     * 新增资产信息
+     * 
+     * @param tbAsset 资产信息
+     * @return 结果
+     */
+    @Override
+    public int insertTbAsset(TbAsset tbAsset)
+    {
+        return tbAssetMapper.insertTbAsset(tbAsset);
+    }
+
+    /**
+     * 修改资产信息
+     * 
+     * @param tbAsset 资产信息
+     * @return 结果
+     */
+    @Override
+    public int updateTbAsset(TbAsset tbAsset)
+    {
+        return tbAssetMapper.updateTbAsset(tbAsset);
+    }
+
+    /**
+     * 批量删除资产信息
+     * 
+     * @param ids 需要删除的资产信息主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbAssetByIds(Long[] ids)
+    {
+        return tbAssetMapper.deleteTbAssetByIds(ids);
+    }
+
+    /**
+     * 删除资产信息信息
+     * 
+     * @param id 资产信息主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbAssetById(Long id)
+    {
+        return tbAssetMapper.deleteTbAssetById(id);
+    }
+}

+ 93 - 0
lab-admin/src/main/java/com/ruoyi/asset/service/impl/TbAssetStatusRecordServiceImpl.java

@@ -0,0 +1,93 @@
+package com.ruoyi.asset.service.impl;
+
+import java.util.List;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.asset.mapper.TbAssetStatusRecordMapper;
+import com.ruoyi.asset.domain.TbAssetStatusRecord;
+import com.ruoyi.asset.service.ITbAssetStatusRecordService;
+
+/**
+ * 资产设备状态记录Service业务层处理
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+@Service
+public class TbAssetStatusRecordServiceImpl implements ITbAssetStatusRecordService 
+{
+    @Autowired
+    private TbAssetStatusRecordMapper tbAssetStatusRecordMapper;
+
+    /**
+     * 查询资产设备状态记录
+     * 
+     * @param id 资产设备状态记录主键
+     * @return 资产设备状态记录
+     */
+    @Override
+    public TbAssetStatusRecord selectTbAssetStatusRecordById(Long id)
+    {
+        return tbAssetStatusRecordMapper.selectTbAssetStatusRecordById(id);
+    }
+
+    /**
+     * 查询资产设备状态记录列表
+     * 
+     * @param tbAssetStatusRecord 资产设备状态记录
+     * @return 资产设备状态记录
+     */
+    @Override
+    public List<TbAssetStatusRecord> selectTbAssetStatusRecordList(TbAssetStatusRecord tbAssetStatusRecord)
+    {
+        return tbAssetStatusRecordMapper.selectTbAssetStatusRecordList(tbAssetStatusRecord);
+    }
+
+    /**
+     * 新增资产设备状态记录
+     * 
+     * @param tbAssetStatusRecord 资产设备状态记录
+     * @return 结果
+     */
+    @Override
+    public int insertTbAssetStatusRecord(TbAssetStatusRecord tbAssetStatusRecord)
+    {
+        return tbAssetStatusRecordMapper.insertTbAssetStatusRecord(tbAssetStatusRecord);
+    }
+
+    /**
+     * 修改资产设备状态记录
+     * 
+     * @param tbAssetStatusRecord 资产设备状态记录
+     * @return 结果
+     */
+    @Override
+    public int updateTbAssetStatusRecord(TbAssetStatusRecord tbAssetStatusRecord)
+    {
+        return tbAssetStatusRecordMapper.updateTbAssetStatusRecord(tbAssetStatusRecord);
+    }
+
+    /**
+     * 批量删除资产设备状态记录
+     * 
+     * @param ids 需要删除的资产设备状态记录主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbAssetStatusRecordByIds(Long[] ids)
+    {
+        return tbAssetStatusRecordMapper.deleteTbAssetStatusRecordByIds(ids);
+    }
+
+    /**
+     * 删除资产设备状态记录信息
+     * 
+     * @param id 资产设备状态记录主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbAssetStatusRecordById(Long id)
+    {
+        return tbAssetStatusRecordMapper.deleteTbAssetStatusRecordById(id);
+    }
+}

+ 93 - 0
lab-admin/src/main/java/com/ruoyi/asset/service/impl/TbFaultReportServiceImpl.java

@@ -0,0 +1,93 @@
+package com.ruoyi.asset.service.impl;
+
+import java.util.List;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.asset.mapper.TbFaultReportMapper;
+import com.ruoyi.asset.domain.TbFaultReport;
+import com.ruoyi.asset.service.ITbFaultReportService;
+
+/**
+ * 故障报备Service业务层处理
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+@Service
+public class TbFaultReportServiceImpl implements ITbFaultReportService 
+{
+    @Autowired
+    private TbFaultReportMapper tbFaultReportMapper;
+
+    /**
+     * 查询故障报备
+     * 
+     * @param id 故障报备主键
+     * @return 故障报备
+     */
+    @Override
+    public TbFaultReport selectTbFaultReportById(Long id)
+    {
+        return tbFaultReportMapper.selectTbFaultReportById(id);
+    }
+
+    /**
+     * 查询故障报备列表
+     * 
+     * @param tbFaultReport 故障报备
+     * @return 故障报备
+     */
+    @Override
+    public List<TbFaultReport> selectTbFaultReportList(TbFaultReport tbFaultReport)
+    {
+        return tbFaultReportMapper.selectTbFaultReportList(tbFaultReport);
+    }
+
+    /**
+     * 新增故障报备
+     * 
+     * @param tbFaultReport 故障报备
+     * @return 结果
+     */
+    @Override
+    public int insertTbFaultReport(TbFaultReport tbFaultReport)
+    {
+        return tbFaultReportMapper.insertTbFaultReport(tbFaultReport);
+    }
+
+    /**
+     * 修改故障报备
+     * 
+     * @param tbFaultReport 故障报备
+     * @return 结果
+     */
+    @Override
+    public int updateTbFaultReport(TbFaultReport tbFaultReport)
+    {
+        return tbFaultReportMapper.updateTbFaultReport(tbFaultReport);
+    }
+
+    /**
+     * 批量删除故障报备
+     * 
+     * @param ids 需要删除的故障报备主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbFaultReportByIds(Long[] ids)
+    {
+        return tbFaultReportMapper.deleteTbFaultReportByIds(ids);
+    }
+
+    /**
+     * 删除故障报备信息
+     * 
+     * @param id 故障报备主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbFaultReportById(Long id)
+    {
+        return tbFaultReportMapper.deleteTbFaultReportById(id);
+    }
+}

+ 93 - 0
lab-admin/src/main/java/com/ruoyi/asset/service/impl/TbPlaceServiceImpl.java

@@ -0,0 +1,93 @@
+package com.ruoyi.asset.service.impl;
+
+import java.util.List;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.asset.mapper.TbPlaceMapper;
+import com.ruoyi.asset.domain.TbPlace;
+import com.ruoyi.asset.service.ITbPlaceService;
+
+/**
+ * 地点Service业务层处理
+ * 
+ * @author 原动力
+ * @date 2023-03-27
+ */
+@Service
+public class TbPlaceServiceImpl implements ITbPlaceService 
+{
+    @Autowired
+    private TbPlaceMapper tbPlaceMapper;
+
+    /**
+     * 查询地点
+     * 
+     * @param id 地点主键
+     * @return 地点
+     */
+    @Override
+    public TbPlace selectTbPlaceById(Long id)
+    {
+        return tbPlaceMapper.selectTbPlaceById(id);
+    }
+
+    /**
+     * 查询地点列表
+     * 
+     * @param tbPlace 地点
+     * @return 地点
+     */
+    @Override
+    public List<TbPlace> selectTbPlaceList(TbPlace tbPlace)
+    {
+        return tbPlaceMapper.selectTbPlaceList(tbPlace);
+    }
+
+    /**
+     * 新增地点
+     * 
+     * @param tbPlace 地点
+     * @return 结果
+     */
+    @Override
+    public int insertTbPlace(TbPlace tbPlace)
+    {
+        return tbPlaceMapper.insertTbPlace(tbPlace);
+    }
+
+    /**
+     * 修改地点
+     * 
+     * @param tbPlace 地点
+     * @return 结果
+     */
+    @Override
+    public int updateTbPlace(TbPlace tbPlace)
+    {
+        return tbPlaceMapper.updateTbPlace(tbPlace);
+    }
+
+    /**
+     * 批量删除地点
+     * 
+     * @param ids 需要删除的地点主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbPlaceByIds(Long[] ids)
+    {
+        return tbPlaceMapper.deleteTbPlaceByIds(ids);
+    }
+
+    /**
+     * 删除地点信息
+     * 
+     * @param id 地点主键
+     * @return 结果
+     */
+    @Override
+    public int deleteTbPlaceById(Long id)
+    {
+        return tbPlaceMapper.deleteTbPlaceById(id);
+    }
+}

+ 2 - 2
lab-admin/src/main/resources/application-druid.yml

@@ -6,9 +6,9 @@ spring:
         druid:
             # 主库数据源
             master:
-                url: jdbc:mysql://localhost:3306/ruoyi?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
+                url: jdbc:mysql://114.116.114.108:3306/ruoyi?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
                 username: root
-                password: 123456
+                password: ydl@123456
             # 从库数据源
             slave:
                 # 从数据源开关/默认关闭

+ 88 - 0
lab-admin/src/main/resources/mapper/asset/TbAssetBorrowRecordMapper.xml

@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.asset.mapper.TbAssetBorrowRecordMapper">
+    
+    <resultMap type="TbAssetBorrowRecord" id="TbAssetBorrowRecordResult">
+        <result property="id"    column="id"    />
+        <result property="assetBarCode"    column="asset_bar_code"    />
+        <result property="userId"    column="user_id"    />
+        <result property="tel"    column="tel"    />
+        <result property="isreturn"    column="isReturn"    />
+        <result property="borrowDate"    column="borrow_date"    />
+        <result property="returnDate"    column="return_date"    />
+        <result property="borrowPlaceName"    column="borrow_place_name"    />
+        <result property="remark"    column="remark"    />
+    </resultMap>
+
+    <sql id="selectTbAssetBorrowRecordVo">
+        select id, asset_bar_code, user_id, tel, isReturn, borrow_date, return_date, borrow_place_name, remark from tb_asset_borrow_record
+    </sql>
+
+    <select id="selectTbAssetBorrowRecordList" parameterType="TbAssetBorrowRecord" resultMap="TbAssetBorrowRecordResult">
+        <include refid="selectTbAssetBorrowRecordVo"/>
+        <where>  
+            <if test="assetBarCode != null  and assetBarCode != ''"> and asset_bar_code = #{assetBarCode}</if>
+            <if test="userId != null "> and user_id = #{userId}</if>
+            <if test="isreturn != null "> and isReturn = #{isreturn}</if>
+            <if test="borrowDate != null "> and borrow_date = #{borrowDate}</if>
+            <if test="returnDate != null "> and return_date = #{returnDate}</if>
+        </where>
+    </select>
+    
+    <select id="selectTbAssetBorrowRecordById" parameterType="Long" resultMap="TbAssetBorrowRecordResult">
+        <include refid="selectTbAssetBorrowRecordVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertTbAssetBorrowRecord" parameterType="TbAssetBorrowRecord" useGeneratedKeys="true" keyProperty="id">
+        insert into tb_asset_borrow_record
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="assetBarCode != null and assetBarCode != ''">asset_bar_code,</if>
+            <if test="userId != null">user_id,</if>
+            <if test="tel != null and tel != ''">tel,</if>
+            <if test="isreturn != null">isReturn,</if>
+            <if test="borrowDate != null">borrow_date,</if>
+            <if test="returnDate != null">return_date,</if>
+            <if test="borrowPlaceName != null and borrowPlaceName != ''">borrow_place_name,</if>
+            <if test="remark != null">remark,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="assetBarCode != null and assetBarCode != ''">#{assetBarCode},</if>
+            <if test="userId != null">#{userId},</if>
+            <if test="tel != null and tel != ''">#{tel},</if>
+            <if test="isreturn != null">#{isreturn},</if>
+            <if test="borrowDate != null">#{borrowDate},</if>
+            <if test="returnDate != null">#{returnDate},</if>
+            <if test="borrowPlaceName != null and borrowPlaceName != ''">#{borrowPlaceName},</if>
+            <if test="remark != null">#{remark},</if>
+         </trim>
+    </insert>
+
+    <update id="updateTbAssetBorrowRecord" parameterType="TbAssetBorrowRecord">
+        update tb_asset_borrow_record
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="assetBarCode != null and assetBarCode != ''">asset_bar_code = #{assetBarCode},</if>
+            <if test="userId != null">user_id = #{userId},</if>
+            <if test="tel != null and tel != ''">tel = #{tel},</if>
+            <if test="isreturn != null">isReturn = #{isreturn},</if>
+            <if test="borrowDate != null">borrow_date = #{borrowDate},</if>
+            <if test="returnDate != null">return_date = #{returnDate},</if>
+            <if test="borrowPlaceName != null and borrowPlaceName != ''">borrow_place_name = #{borrowPlaceName},</if>
+            <if test="remark != null">remark = #{remark},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteTbAssetBorrowRecordById" parameterType="Long">
+        delete from tb_asset_borrow_record where id = #{id}
+    </delete>
+
+    <delete id="deleteTbAssetBorrowRecordByIds" parameterType="String">
+        delete from tb_asset_borrow_record where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>

+ 65 - 0
lab-admin/src/main/resources/mapper/asset/TbAssetCategoryMapper.xml

@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.asset.mapper.TbAssetCategoryMapper">
+    
+    <resultMap type="TbAssetCategory" id="TbAssetCategoryResult">
+        <result property="id"    column="id"    />
+        <result property="number"    column="number"    />
+        <result property="name"    column="name"    />
+        <result property="remark"    column="remark"    />
+    </resultMap>
+
+    <sql id="selectTbAssetCategoryVo">
+        select id, number, name, remark from tb_asset_category
+    </sql>
+
+    <select id="selectTbAssetCategoryList" parameterType="TbAssetCategory" resultMap="TbAssetCategoryResult">
+        <include refid="selectTbAssetCategoryVo"/>
+        <where>  
+            <if test="number != null  and number != ''"> and number = #{number}</if>
+            <if test="name != null  and name != ''"> and name like concat('%', #{name}, '%')</if>
+        </where>
+    </select>
+    
+    <select id="selectTbAssetCategoryById" parameterType="Long" resultMap="TbAssetCategoryResult">
+        <include refid="selectTbAssetCategoryVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertTbAssetCategory" parameterType="TbAssetCategory" useGeneratedKeys="true" keyProperty="id">
+        insert into tb_asset_category
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="number != null and number != ''">number,</if>
+            <if test="name != null and name != ''">name,</if>
+            <if test="remark != null">remark,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="number != null and number != ''">#{number},</if>
+            <if test="name != null and name != ''">#{name},</if>
+            <if test="remark != null">#{remark},</if>
+         </trim>
+    </insert>
+
+    <update id="updateTbAssetCategory" parameterType="TbAssetCategory">
+        update tb_asset_category
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="number != null and number != ''">number = #{number},</if>
+            <if test="name != null and name != ''">name = #{name},</if>
+            <if test="remark != null">remark = #{remark},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteTbAssetCategoryById" parameterType="Long">
+        delete from tb_asset_category where id = #{id}
+    </delete>
+
+    <delete id="deleteTbAssetCategoryByIds" parameterType="String">
+        delete from tb_asset_category where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>

+ 138 - 0
lab-admin/src/main/resources/mapper/asset/TbAssetMapper.xml

@@ -0,0 +1,138 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.asset.mapper.TbAssetMapper">
+    
+    <resultMap type="TbAsset" id="TbAssetResult">
+        <result property="id"    column="id"    />
+        <result property="barCode"    column="bar_code"    />
+        <result property="number"    column="number"    />
+        <result property="name"    column="name"    />
+        <result property="kind"    column="kind"    />
+        <result property="categoryNumber"    column="category_number"    />
+        <result property="amount"    column="amount"    />
+        <result property="quantity"    column="quantity"    />
+        <result property="buildDate"    column="build_date"    />
+        <result property="placeName"    column="place_name"    />
+        <result property="purpose"    column="purpose"    />
+        <result property="deptId"    column="dept_id"    />
+        <result property="registrant"    column="registrant"    />
+        <result property="specificationsModel"    column="specifications_model"    />
+        <result property="remark"    column="remark"    />
+        <result property="manufacturer"    column="manufacturer"    />
+        <result property="brand"    column="brand"    />
+        <result property="supplier"    column="supplier"    />
+        <result property="status"    column="status"    />
+    </resultMap>
+
+    <sql id="selectTbAssetVo">
+        select id, bar_code, number, name, kind, category_number, amount, quantity, build_date, place_name, purpose, dept_id, registrant, specifications_model, remark, manufacturer, brand, supplier, status from tb_asset
+    </sql>
+
+    <select id="selectTbAssetList" parameterType="TbAsset" resultMap="TbAssetResult">
+        <include refid="selectTbAssetVo"/>
+        <where>  
+            <if test="barCode != null  and barCode != ''"> and bar_code = #{barCode}</if>
+            <if test="number != null  and number != ''"> and number = #{number}</if>
+            <if test="name != null  and name != ''"> and name like concat('%', #{name}, '%')</if>
+            <if test="kind != null  and kind != ''"> and kind = #{kind}</if>
+            <if test="categoryNumber != null  and categoryNumber != ''"> and category_number = #{categoryNumber}</if>
+            <if test="buildDate != null "> and build_date = #{buildDate}</if>
+            <if test="placeName != null  and placeName != ''"> and place_name like concat('%', #{placeName}, '%')</if>
+            <if test="purpose != null  and purpose != ''"> and purpose = #{purpose}</if>
+            <if test="deptId != null "> and dept_id = #{deptId}</if>
+            <if test="registrant != null  and registrant != ''"> and registrant = #{registrant}</if>
+            <if test="remark != null  and remark != ''"> and remark = #{remark}</if>
+            <if test="manufacturer != null  and manufacturer != ''"> and manufacturer = #{manufacturer}</if>
+            <if test="brand != null  and brand != ''"> and brand = #{brand}</if>
+            <if test="supplier != null  and supplier != ''"> and supplier = #{supplier}</if>
+            <if test="status != null "> and status = #{status}</if>
+        </where>
+    </select>
+    
+    <select id="selectTbAssetById" parameterType="Long" resultMap="TbAssetResult">
+        <include refid="selectTbAssetVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertTbAsset" parameterType="TbAsset" useGeneratedKeys="true" keyProperty="id">
+        insert into tb_asset
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="barCode != null and barCode != ''">bar_code,</if>
+            <if test="number != null and number != ''">number,</if>
+            <if test="name != null and name != ''">name,</if>
+            <if test="kind != null and kind != ''">kind,</if>
+            <if test="categoryNumber != null and categoryNumber != ''">category_number,</if>
+            <if test="amount != null">amount,</if>
+            <if test="quantity != null">quantity,</if>
+            <if test="buildDate != null">build_date,</if>
+            <if test="placeName != null">place_name,</if>
+            <if test="purpose != null">purpose,</if>
+            <if test="deptId != null">dept_id,</if>
+            <if test="registrant != null and registrant != ''">registrant,</if>
+            <if test="specificationsModel != null and specificationsModel != ''">specifications_model,</if>
+            <if test="remark != null">remark,</if>
+            <if test="manufacturer != null">manufacturer,</if>
+            <if test="brand != null">brand,</if>
+            <if test="supplier != null">supplier,</if>
+            <if test="status != null">status,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="barCode != null and barCode != ''">#{barCode},</if>
+            <if test="number != null and number != ''">#{number},</if>
+            <if test="name != null and name != ''">#{name},</if>
+            <if test="kind != null and kind != ''">#{kind},</if>
+            <if test="categoryNumber != null and categoryNumber != ''">#{categoryNumber},</if>
+            <if test="amount != null">#{amount},</if>
+            <if test="quantity != null">#{quantity},</if>
+            <if test="buildDate != null">#{buildDate},</if>
+            <if test="placeName != null">#{placeName},</if>
+            <if test="purpose != null">#{purpose},</if>
+            <if test="deptId != null">#{deptId},</if>
+            <if test="registrant != null and registrant != ''">#{registrant},</if>
+            <if test="specificationsModel != null and specificationsModel != ''">#{specificationsModel},</if>
+            <if test="remark != null">#{remark},</if>
+            <if test="manufacturer != null">#{manufacturer},</if>
+            <if test="brand != null">#{brand},</if>
+            <if test="supplier != null">#{supplier},</if>
+            <if test="status != null">#{status},</if>
+         </trim>
+    </insert>
+
+    <update id="updateTbAsset" parameterType="TbAsset">
+        update tb_asset
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="barCode != null and barCode != ''">bar_code = #{barCode},</if>
+            <if test="number != null and number != ''">number = #{number},</if>
+            <if test="name != null and name != ''">name = #{name},</if>
+            <if test="kind != null and kind != ''">kind = #{kind},</if>
+            <if test="categoryNumber != null and categoryNumber != ''">category_number = #{categoryNumber},</if>
+            <if test="amount != null">amount = #{amount},</if>
+            <if test="quantity != null">quantity = #{quantity},</if>
+            <if test="buildDate != null">build_date = #{buildDate},</if>
+            <if test="placeName != null">place_name = #{placeName},</if>
+            <if test="purpose != null">purpose = #{purpose},</if>
+            <if test="deptId != null">dept_id = #{deptId},</if>
+            <if test="registrant != null and registrant != ''">registrant = #{registrant},</if>
+            <if test="specificationsModel != null and specificationsModel != ''">specifications_model = #{specificationsModel},</if>
+            <if test="remark != null">remark = #{remark},</if>
+            <if test="manufacturer != null">manufacturer = #{manufacturer},</if>
+            <if test="brand != null">brand = #{brand},</if>
+            <if test="supplier != null">supplier = #{supplier},</if>
+            <if test="status != null">status = #{status},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteTbAssetById" parameterType="Long">
+        delete from tb_asset where id = #{id}
+    </delete>
+
+    <delete id="deleteTbAssetByIds" parameterType="String">
+        delete from tb_asset where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>

+ 69 - 0
lab-admin/src/main/resources/mapper/asset/TbAssetStatusRecordMapper.xml

@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.asset.mapper.TbAssetStatusRecordMapper">
+    
+    <resultMap type="TbAssetStatusRecord" id="TbAssetStatusRecordResult">
+        <result property="id"    column="id"    />
+        <result property="assetBarCode"    column="asset_bar_code"    />
+        <result property="borrowNumber"    column="borrow_number"    />
+        <result property="faultNumber"    column="fault_number"    />
+        <result property="lastFaultDate"    column="last_fault_date"    />
+    </resultMap>
+
+    <sql id="selectTbAssetStatusRecordVo">
+        select id, asset_bar_code, borrow_number, fault_number, last_fault_date from tb_asset_status_record
+    </sql>
+
+    <select id="selectTbAssetStatusRecordList" parameterType="TbAssetStatusRecord" resultMap="TbAssetStatusRecordResult">
+        <include refid="selectTbAssetStatusRecordVo"/>
+        <where>  
+            <if test="assetBarCode != null  and assetBarCode != ''"> and asset_bar_code = #{assetBarCode}</if>
+            <if test="lastFaultDate != null "> and last_fault_date = #{lastFaultDate}</if>
+        </where>
+    </select>
+    
+    <select id="selectTbAssetStatusRecordById" parameterType="Long" resultMap="TbAssetStatusRecordResult">
+        <include refid="selectTbAssetStatusRecordVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertTbAssetStatusRecord" parameterType="TbAssetStatusRecord" useGeneratedKeys="true" keyProperty="id">
+        insert into tb_asset_status_record
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="assetBarCode != null and assetBarCode != ''">asset_bar_code,</if>
+            <if test="borrowNumber != null">borrow_number,</if>
+            <if test="faultNumber != null">fault_number,</if>
+            <if test="lastFaultDate != null">last_fault_date,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="assetBarCode != null and assetBarCode != ''">#{assetBarCode},</if>
+            <if test="borrowNumber != null">#{borrowNumber},</if>
+            <if test="faultNumber != null">#{faultNumber},</if>
+            <if test="lastFaultDate != null">#{lastFaultDate},</if>
+         </trim>
+    </insert>
+
+    <update id="updateTbAssetStatusRecord" parameterType="TbAssetStatusRecord">
+        update tb_asset_status_record
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="assetBarCode != null and assetBarCode != ''">asset_bar_code = #{assetBarCode},</if>
+            <if test="borrowNumber != null">borrow_number = #{borrowNumber},</if>
+            <if test="faultNumber != null">fault_number = #{faultNumber},</if>
+            <if test="lastFaultDate != null">last_fault_date = #{lastFaultDate},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteTbAssetStatusRecordById" parameterType="Long">
+        delete from tb_asset_status_record where id = #{id}
+    </delete>
+
+    <delete id="deleteTbAssetStatusRecordByIds" parameterType="String">
+        delete from tb_asset_status_record where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>

+ 84 - 0
lab-admin/src/main/resources/mapper/asset/TbFaultReportMapper.xml

@@ -0,0 +1,84 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.asset.mapper.TbFaultReportMapper">
+    
+    <resultMap type="TbFaultReport" id="TbFaultReportResult">
+        <result property="id"    column="id"    />
+        <result property="assetBarCode"    column="asset_bar_code"    />
+        <result property="userId"    column="user_id"    />
+        <result property="reportDate"    column="report_date"    />
+        <result property="faultPhenomenon"    column="fault_phenomenon"    />
+        <result property="tel"    column="tel"    />
+        <result property="processState"    column="process_state"    />
+        <result property="processResult"    column="process_result"    />
+    </resultMap>
+
+    <sql id="selectTbFaultReportVo">
+        select id, asset_bar_code, user_id, report_date, fault_phenomenon, tel, process_state, process_result from tb_fault_report
+    </sql>
+
+    <select id="selectTbFaultReportList" parameterType="TbFaultReport" resultMap="TbFaultReportResult">
+        <include refid="selectTbFaultReportVo"/>
+        <where>  
+            <if test="assetBarCode != null  and assetBarCode != ''"> and asset_bar_code = #{assetBarCode}</if>
+            <if test="userId != null "> and user_id = #{userId}</if>
+            <if test="reportDate != null "> and report_date = #{reportDate}</if>
+            <if test="faultPhenomenon != null  and faultPhenomenon != ''"> and fault_phenomenon = #{faultPhenomenon}</if>
+            <if test="processState != null "> and process_state = #{processState}</if>
+        </where>
+    </select>
+    
+    <select id="selectTbFaultReportById" parameterType="Long" resultMap="TbFaultReportResult">
+        <include refid="selectTbFaultReportVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertTbFaultReport" parameterType="TbFaultReport" useGeneratedKeys="true" keyProperty="id">
+        insert into tb_fault_report
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="assetBarCode != null and assetBarCode != ''">asset_bar_code,</if>
+            <if test="userId != null">user_id,</if>
+            <if test="reportDate != null">report_date,</if>
+            <if test="faultPhenomenon != null and faultPhenomenon != ''">fault_phenomenon,</if>
+            <if test="tel != null and tel != ''">tel,</if>
+            <if test="processState != null">process_state,</if>
+            <if test="processResult != null">process_result,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="assetBarCode != null and assetBarCode != ''">#{assetBarCode},</if>
+            <if test="userId != null">#{userId},</if>
+            <if test="reportDate != null">#{reportDate},</if>
+            <if test="faultPhenomenon != null and faultPhenomenon != ''">#{faultPhenomenon},</if>
+            <if test="tel != null and tel != ''">#{tel},</if>
+            <if test="processState != null">#{processState},</if>
+            <if test="processResult != null">#{processResult},</if>
+         </trim>
+    </insert>
+
+    <update id="updateTbFaultReport" parameterType="TbFaultReport">
+        update tb_fault_report
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="assetBarCode != null and assetBarCode != ''">asset_bar_code = #{assetBarCode},</if>
+            <if test="userId != null">user_id = #{userId},</if>
+            <if test="reportDate != null">report_date = #{reportDate},</if>
+            <if test="faultPhenomenon != null and faultPhenomenon != ''">fault_phenomenon = #{faultPhenomenon},</if>
+            <if test="tel != null and tel != ''">tel = #{tel},</if>
+            <if test="processState != null">process_state = #{processState},</if>
+            <if test="processResult != null">process_result = #{processResult},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteTbFaultReportById" parameterType="Long">
+        delete from tb_fault_report where id = #{id}
+    </delete>
+
+    <delete id="deleteTbFaultReportByIds" parameterType="String">
+        delete from tb_fault_report where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>

+ 61 - 0
lab-admin/src/main/resources/mapper/asset/TbPlaceMapper.xml

@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.asset.mapper.TbPlaceMapper">
+    
+    <resultMap type="TbPlace" id="TbPlaceResult">
+        <result property="id"    column="id"    />
+        <result property="name"    column="name"    />
+        <result property="purpose"    column="purpose"    />
+    </resultMap>
+
+    <sql id="selectTbPlaceVo">
+        select id, name, purpose from tb_place
+    </sql>
+
+    <select id="selectTbPlaceList" parameterType="TbPlace" resultMap="TbPlaceResult">
+        <include refid="selectTbPlaceVo"/>
+        <where>  
+            <if test="name != null  and name != ''"> and name like concat('%', #{name}, '%')</if>
+            <if test="purpose != null  and purpose != ''"> and purpose = #{purpose}</if>
+        </where>
+    </select>
+    
+    <select id="selectTbPlaceById" parameterType="Long" resultMap="TbPlaceResult">
+        <include refid="selectTbPlaceVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertTbPlace" parameterType="TbPlace" useGeneratedKeys="true" keyProperty="id">
+        insert into tb_place
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="name != null and name != ''">name,</if>
+            <if test="purpose != null">purpose,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="name != null and name != ''">#{name},</if>
+            <if test="purpose != null">#{purpose},</if>
+         </trim>
+    </insert>
+
+    <update id="updateTbPlace" parameterType="TbPlace">
+        update tb_place
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="name != null and name != ''">name = #{name},</if>
+            <if test="purpose != null">purpose = #{purpose},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteTbPlaceById" parameterType="Long">
+        delete from tb_place where id = #{id}
+    </delete>
+
+    <delete id="deleteTbPlaceByIds" parameterType="String">
+        delete from tb_place where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>

+ 44 - 0
lab-ui/src/api/asset/asset.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询资产信息列表
+export function listAsset(query) {
+  return request({
+    url: '/asset/asset/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询资产信息详细
+export function getAsset(id) {
+  return request({
+    url: '/asset/asset/' + id,
+    method: 'get'
+  })
+}
+
+// 新增资产信息
+export function addAsset(data) {
+  return request({
+    url: '/asset/asset',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改资产信息
+export function updateAsset(data) {
+  return request({
+    url: '/asset/asset',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除资产信息
+export function delAsset(id) {
+  return request({
+    url: '/asset/asset/' + id,
+    method: 'delete'
+  })
+}

+ 44 - 0
lab-ui/src/api/asset/borrow.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询设备借用记录列表
+export function listBorrow(query) {
+  return request({
+    url: '/asset/borrow/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询设备借用记录详细
+export function getBorrow(id) {
+  return request({
+    url: '/asset/borrow/' + id,
+    method: 'get'
+  })
+}
+
+// 新增设备借用记录
+export function addBorrow(data) {
+  return request({
+    url: '/asset/borrow',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改设备借用记录
+export function updateBorrow(data) {
+  return request({
+    url: '/asset/borrow',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除设备借用记录
+export function delBorrow(id) {
+  return request({
+    url: '/asset/borrow/' + id,
+    method: 'delete'
+  })
+}

+ 44 - 0
lab-ui/src/api/asset/category.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询资产分类列表
+export function listCategory(query) {
+  return request({
+    url: '/asset/category/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询资产分类详细
+export function getCategory(id) {
+  return request({
+    url: '/asset/category/' + id,
+    method: 'get'
+  })
+}
+
+// 新增资产分类
+export function addCategory(data) {
+  return request({
+    url: '/asset/category',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改资产分类
+export function updateCategory(data) {
+  return request({
+    url: '/asset/category',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除资产分类
+export function delCategory(id) {
+  return request({
+    url: '/asset/category/' + id,
+    method: 'delete'
+  })
+}

+ 44 - 0
lab-ui/src/api/asset/fault.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询故障报备列表
+export function listFault(query) {
+  return request({
+    url: '/asset/fault/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询故障报备详细
+export function getFault(id) {
+  return request({
+    url: '/asset/fault/' + id,
+    method: 'get'
+  })
+}
+
+// 新增故障报备
+export function addFault(data) {
+  return request({
+    url: '/asset/fault',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改故障报备
+export function updateFault(data) {
+  return request({
+    url: '/asset/fault',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除故障报备
+export function delFault(id) {
+  return request({
+    url: '/asset/fault/' + id,
+    method: 'delete'
+  })
+}

+ 44 - 0
lab-ui/src/api/asset/place.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询地点列表
+export function listPlace(query) {
+  return request({
+    url: '/asset/place/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询地点详细
+export function getPlace(id) {
+  return request({
+    url: '/asset/place/' + id,
+    method: 'get'
+  })
+}
+
+// 新增地点
+export function addPlace(data) {
+  return request({
+    url: '/asset/place',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改地点
+export function updatePlace(data) {
+  return request({
+    url: '/asset/place',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除地点
+export function delPlace(id) {
+  return request({
+    url: '/asset/place/' + id,
+    method: 'delete'
+  })
+}

+ 44 - 0
lab-ui/src/api/asset/record.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询资产设备状态记录列表
+export function listRecord(query) {
+  return request({
+    url: '/asset/record/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询资产设备状态记录详细
+export function getRecord(id) {
+  return request({
+    url: '/asset/record/' + id,
+    method: 'get'
+  })
+}
+
+// 新增资产设备状态记录
+export function addRecord(data) {
+  return request({
+    url: '/asset/record',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改资产设备状态记录
+export function updateRecord(data) {
+  return request({
+    url: '/asset/record',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除资产设备状态记录
+export function delRecord(id) {
+  return request({
+    url: '/asset/record/' + id,
+    method: 'delete'
+  })
+}

+ 538 - 0
lab-ui/src/views/asset/asset/index.vue

@@ -0,0 +1,538 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="条形码" prop="barCode">
+        <el-input
+          v-model="queryParams.barCode"
+          placeholder="请输入条形码"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="资产编号" prop="number">
+        <el-input
+          v-model="queryParams.number"
+          placeholder="请输入资产编号"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="资产名称" prop="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入资产名称"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="资产种类" prop="kind">
+        <el-select v-model="queryParams.kind" placeholder="请选择资产种类" clearable>
+          <el-option
+            v-for="dict in dict.type.asset_kind"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </el-form-item>
+      <el-form-item label="资产分类编号" prop="categoryNumber">
+        <el-input
+          v-model="queryParams.categoryNumber"
+          placeholder="请输入资产分类编号"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="取得时间" prop="buildDate">
+        <el-date-picker clearable
+          v-model="queryParams.buildDate"
+          type="date"
+          value-format="yyyy-MM-dd"
+          placeholder="请选择取得时间">
+        </el-date-picker>
+      </el-form-item>
+      <el-form-item label="存放地点" prop="placeName">
+        <el-input
+          v-model="queryParams.placeName"
+          placeholder="请输入存放地点"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="资产用途" prop="purpose">
+        <el-select v-model="queryParams.purpose" placeholder="请选择资产用途" clearable>
+          <el-option
+            v-for="dict in dict.type.asset_prupose"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </el-form-item>
+      <el-form-item label="使用部门ID" prop="deptId">
+        <el-input
+          v-model="queryParams.deptId"
+          placeholder="请输入使用部门ID"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="登记人" prop="registrant">
+        <el-input
+          v-model="queryParams.registrant"
+          placeholder="请输入登记人"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="备注" prop="remark">
+        <el-input
+          v-model="queryParams.remark"
+          placeholder="请输入备注"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="生产厂商" prop="manufacturer">
+        <el-input
+          v-model="queryParams.manufacturer"
+          placeholder="请输入生产厂商"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="品牌型号" prop="brand">
+        <el-input
+          v-model="queryParams.brand"
+          placeholder="请输入品牌型号"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="供应商" prop="supplier">
+        <el-input
+          v-model="queryParams.supplier"
+          placeholder="请输入供应商"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="状态" prop="status">
+        <el-select v-model="queryParams.status" placeholder="请选择状态" clearable>
+          <el-option
+            v-for="dict in dict.type.asset_status"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['asset:asset:add']"
+        >新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['asset:asset:edit']"
+        >修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['asset:asset:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['asset:asset:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="assetList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="编号" align="center" prop="id" />
+      <el-table-column label="条形码" align="center" prop="barCode" />
+      <el-table-column label="资产编号" align="center" prop="number" />
+      <el-table-column label="资产名称" align="center" prop="name" />
+      <el-table-column label="资产种类" align="center" prop="kind">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.asset_kind" :value="scope.row.kind"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="资产分类编号" align="center" prop="categoryNumber" />
+      <el-table-column label="资产原值" align="center" prop="amount" />
+      <el-table-column label="数量" align="center" prop="quantity" />
+      <el-table-column label="取得时间" align="center" prop="buildDate" width="180">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.buildDate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="存放地点" align="center" prop="placeName" />
+      <el-table-column label="资产用途" align="center" prop="purpose">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.asset_prupose" :value="scope.row.purpose"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="使用部门ID" align="center" prop="deptId" />
+      <el-table-column label="登记人" align="center" prop="registrant" />
+      <el-table-column label="规格型号" align="center" prop="specificationsModel" />
+      <el-table-column label="备注" align="center" prop="remark" />
+      <el-table-column label="生产厂商" align="center" prop="manufacturer" />
+      <el-table-column label="品牌型号" align="center" prop="brand" />
+      <el-table-column label="供应商" align="center" prop="supplier" />
+      <el-table-column label="状态" align="center" prop="status">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.asset_status" :value="scope.row.status"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['asset:asset:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['asset:asset:remove']"
+          >删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+    
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改资产信息对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="条形码" prop="barCode">
+          <el-input v-model="form.barCode" placeholder="请输入条形码" />
+        </el-form-item>
+        <el-form-item label="资产编号" prop="number">
+          <el-input v-model="form.number" placeholder="请输入资产编号" />
+        </el-form-item>
+        <el-form-item label="资产名称" prop="name">
+          <el-input v-model="form.name" placeholder="请输入资产名称" />
+        </el-form-item>
+        <el-form-item label="资产种类" prop="kind">
+          <el-select v-model="form.kind" placeholder="请选择资产种类">
+            <el-option
+              v-for="dict in dict.type.asset_kind"
+              :key="dict.value"
+              :label="dict.label"
+:value="dict.value"
+            ></el-option>
+          </el-select>
+        </el-form-item>
+        <el-form-item label="资产分类编号" prop="categoryNumber">
+          <el-input v-model="form.categoryNumber" placeholder="请输入资产分类编号" />
+        </el-form-item>
+        <el-form-item label="资产原值" prop="amount">
+          <el-input v-model="form.amount" placeholder="请输入资产原值" />
+        </el-form-item>
+        <el-form-item label="数量" prop="quantity">
+          <el-input v-model="form.quantity" placeholder="请输入数量" />
+        </el-form-item>
+        <el-form-item label="取得时间" prop="buildDate">
+          <el-date-picker clearable
+            v-model="form.buildDate"
+            type="date"
+            value-format="yyyy-MM-dd"
+            placeholder="请选择取得时间">
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item label="存放地点" prop="placeName">
+          <el-input v-model="form.placeName" placeholder="请输入存放地点" />
+        </el-form-item>
+        <el-form-item label="资产用途" prop="purpose">
+          <el-select v-model="form.purpose" placeholder="请选择资产用途">
+            <el-option
+              v-for="dict in dict.type.asset_prupose"
+              :key="dict.value"
+              :label="dict.label"
+:value="dict.value"
+            ></el-option>
+          </el-select>
+        </el-form-item>
+        <el-form-item label="使用部门ID" prop="deptId">
+          <el-input v-model="form.deptId" placeholder="请输入使用部门ID" />
+        </el-form-item>
+        <el-form-item label="登记人" prop="registrant">
+          <el-input v-model="form.registrant" placeholder="请输入登记人" />
+        </el-form-item>
+        <el-form-item label="规格型号" prop="specificationsModel">
+          <el-input v-model="form.specificationsModel" placeholder="请输入规格型号" />
+        </el-form-item>
+        <el-form-item label="备注" prop="remark">
+          <el-input v-model="form.remark" placeholder="请输入备注" />
+        </el-form-item>
+        <el-form-item label="生产厂商" prop="manufacturer">
+          <el-input v-model="form.manufacturer" placeholder="请输入生产厂商" />
+        </el-form-item>
+        <el-form-item label="品牌型号" prop="brand">
+          <el-input v-model="form.brand" placeholder="请输入品牌型号" />
+        </el-form-item>
+        <el-form-item label="供应商" prop="supplier">
+          <el-input v-model="form.supplier" placeholder="请输入供应商" />
+        </el-form-item>
+        <el-form-item label="状态" prop="status">
+          <el-select v-model="form.status" placeholder="请选择状态">
+            <el-option
+              v-for="dict in dict.type.asset_status"
+              :key="dict.value"
+              :label="dict.label"
+:value="parseInt(dict.value)"
+            ></el-option>
+          </el-select>
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listAsset, getAsset, delAsset, addAsset, updateAsset } from "@/api/asset/asset";
+
+export default {
+  name: "Asset",
+  dicts: ['asset_kind', 'asset_prupose', 'asset_status'],
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 资产信息表格数据
+      assetList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        barCode: null,
+        number: null,
+        name: null,
+        kind: null,
+        categoryNumber: null,
+        buildDate: null,
+        placeName: null,
+        purpose: null,
+        deptId: null,
+        registrant: null,
+        remark: null,
+        manufacturer: null,
+        brand: null,
+        supplier: null,
+        status: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        barCode: [
+          { required: true, message: "条形码不能为空", trigger: "blur" }
+        ],
+        number: [
+          { required: true, message: "资产编号不能为空", trigger: "blur" }
+        ],
+        name: [
+          { required: true, message: "资产名称不能为空", trigger: "blur" }
+        ],
+        kind: [
+          { required: true, message: "资产种类不能为空", trigger: "change" }
+        ],
+        categoryNumber: [
+          { required: true, message: "资产分类编号不能为空", trigger: "blur" }
+        ],
+        amount: [
+          { required: true, message: "资产原值不能为空", trigger: "blur" }
+        ],
+        quantity: [
+          { required: true, message: "数量不能为空", trigger: "blur" }
+        ],
+        buildDate: [
+          { required: true, message: "取得时间不能为空", trigger: "blur" }
+        ],
+        registrant: [
+          { required: true, message: "登记人不能为空", trigger: "blur" }
+        ],
+        specificationsModel: [
+          { required: true, message: "规格型号不能为空", trigger: "blur" }
+        ],
+        status: [
+          { required: true, message: "状态不能为空", trigger: "change" }
+        ]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询资产信息列表 */
+    getList() {
+      this.loading = true;
+      listAsset(this.queryParams).then(response => {
+        this.assetList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        barCode: null,
+        number: null,
+        name: null,
+        kind: null,
+        categoryNumber: null,
+        amount: null,
+        quantity: null,
+        buildDate: null,
+        placeName: null,
+        purpose: null,
+        deptId: null,
+        registrant: null,
+        specificationsModel: null,
+        remark: null,
+        manufacturer: null,
+        brand: null,
+        supplier: null,
+        status: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加资产信息";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getAsset(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改资产信息";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateAsset(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addAsset(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除资产信息编号为"' + ids + '"的数据项?').then(function() {
+        return delAsset(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('asset/asset/export', {
+        ...this.queryParams
+      }, `asset_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 369 - 0
lab-ui/src/views/asset/borrow/index.vue

@@ -0,0 +1,369 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="设备条形码" prop="assetBarCode">
+        <el-input
+          v-model="queryParams.assetBarCode"
+          placeholder="请输入设备条形码"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="借用人" prop="userId">
+        <el-input
+          v-model="queryParams.userId"
+          placeholder="请输入借用人"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="是否归还" prop="isreturn">
+        <el-select v-model="queryParams.isreturn" placeholder="请选择是否归还" clearable>
+          <el-option
+            v-for="dict in dict.type.asset_borrow_status"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </el-form-item>
+      <el-form-item label="借用时间" prop="borrowDate">
+        <el-date-picker clearable
+          v-model="queryParams.borrowDate"
+          type="date"
+          value-format="yyyy-MM-dd"
+          placeholder="请选择借用时间">
+        </el-date-picker>
+      </el-form-item>
+      <el-form-item label="归还时间" prop="returnDate">
+        <el-date-picker clearable
+          v-model="queryParams.returnDate"
+          type="date"
+          value-format="yyyy-MM-dd"
+          placeholder="请选择归还时间">
+        </el-date-picker>
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['asset:borrow:add']"
+        >新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['asset:borrow:edit']"
+        >修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['asset:borrow:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['asset:borrow:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="borrowList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="记录编号" align="center" prop="id" />
+      <el-table-column label="设备条形码" align="center" prop="assetBarCode" />
+      <el-table-column label="借用人" align="center" prop="userId" />
+      <el-table-column label="借用人电话" align="center" prop="tel" />
+      <el-table-column label="是否归还" align="center" prop="isreturn">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.asset_borrow_status" :value="scope.row.isreturn"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="借用时间" align="center" prop="borrowDate" width="180">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.borrowDate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="归还时间" align="center" prop="returnDate" width="180">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.returnDate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="借用地点" align="center" prop="borrowPlaceName" />
+      <el-table-column label="备注" align="center" prop="remark" />
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['asset:borrow:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['asset:borrow:remove']"
+          >删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+    
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改设备借用记录对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="设备条形码" prop="assetBarCode">
+          <el-input v-model="form.assetBarCode" placeholder="请输入设备条形码" />
+        </el-form-item>
+        <el-form-item label="借用人" prop="userId">
+          <el-input v-model="form.userId" placeholder="请输入借用人" />
+        </el-form-item>
+        <el-form-item label="借用人电话" prop="tel">
+          <el-input v-model="form.tel" placeholder="请输入借用人电话" />
+        </el-form-item>
+        <el-form-item label="是否归还" prop="isreturn">
+          <el-select v-model="form.isreturn" placeholder="请选择是否归还">
+            <el-option
+              v-for="dict in dict.type.asset_borrow_status"
+              :key="dict.value"
+              :label="dict.label"
+:value="parseInt(dict.value)"
+            ></el-option>
+          </el-select>
+        </el-form-item>
+        <el-form-item label="借用时间" prop="borrowDate">
+          <el-date-picker clearable
+            v-model="form.borrowDate"
+            type="date"
+            value-format="yyyy-MM-dd"
+            placeholder="请选择借用时间">
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item label="归还时间" prop="returnDate">
+          <el-date-picker clearable
+            v-model="form.returnDate"
+            type="date"
+            value-format="yyyy-MM-dd"
+            placeholder="请选择归还时间">
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item label="借用地点" prop="borrowPlaceName">
+          <el-input v-model="form.borrowPlaceName" placeholder="请输入借用地点" />
+        </el-form-item>
+        <el-form-item label="备注" prop="remark">
+          <el-input v-model="form.remark" placeholder="请输入备注" />
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listBorrow, getBorrow, delBorrow, addBorrow, updateBorrow } from "@/api/asset/borrow";
+
+export default {
+  name: "Borrow",
+  dicts: ['asset_borrow_status'],
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 设备借用记录表格数据
+      borrowList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        assetBarCode: null,
+        userId: null,
+        isreturn: null,
+        borrowDate: null,
+        returnDate: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        assetBarCode: [
+          { required: true, message: "设备条形码不能为空", trigger: "blur" }
+        ],
+        userId: [
+          { required: true, message: "借用人不能为空", trigger: "blur" }
+        ],
+        tel: [
+          { required: true, message: "借用人电话不能为空", trigger: "blur" }
+        ],
+        isreturn: [
+          { required: true, message: "是否归还不能为空", trigger: "change" }
+        ],
+        borrowDate: [
+          { required: true, message: "借用时间不能为空", trigger: "blur" }
+        ],
+        returnDate: [
+          { required: true, message: "归还时间不能为空", trigger: "blur" }
+        ],
+        borrowPlaceName: [
+          { required: true, message: "借用地点不能为空", trigger: "blur" }
+        ],
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询设备借用记录列表 */
+    getList() {
+      this.loading = true;
+      listBorrow(this.queryParams).then(response => {
+        this.borrowList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        assetBarCode: null,
+        userId: null,
+        tel: null,
+        isreturn: null,
+        borrowDate: null,
+        returnDate: null,
+        borrowPlaceName: null,
+        remark: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加设备借用记录";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getBorrow(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改设备借用记录";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateBorrow(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addBorrow(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除设备借用记录编号为"' + ids + '"的数据项?').then(function() {
+        return delBorrow(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('asset/borrow/export', {
+        ...this.queryParams
+      }, `borrow_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 270 - 0
lab-ui/src/views/asset/category/index.vue

@@ -0,0 +1,270 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="资产分类编号" prop="number">
+        <el-input
+          v-model="queryParams.number"
+          placeholder="请输入资产分类编号"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="资产分类名称" prop="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入资产分类名称"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['asset:category:add']"
+        >新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['asset:category:edit']"
+        >修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['asset:category:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['asset:category:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="categoryList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="编号" align="center" prop="id" />
+      <el-table-column label="资产分类编号" align="center" prop="number" />
+      <el-table-column label="资产分类名称" align="center" prop="name" />
+      <el-table-column label="资产分类备注" align="center" prop="remark" />
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['asset:category:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['asset:category:remove']"
+          >删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+    
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改资产分类对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="资产分类编号" prop="number">
+          <el-input v-model="form.number" placeholder="请输入资产分类编号" />
+        </el-form-item>
+        <el-form-item label="资产分类名称" prop="name">
+          <el-input v-model="form.name" placeholder="请输入资产分类名称" />
+        </el-form-item>
+        <el-form-item label="资产分类备注" prop="remark">
+          <el-input v-model="form.remark" placeholder="请输入资产分类备注" />
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listCategory, getCategory, delCategory, addCategory, updateCategory } from "@/api/asset/category";
+
+export default {
+  name: "Category",
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 资产分类表格数据
+      categoryList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        number: null,
+        name: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        number: [
+          { required: true, message: "资产分类编号不能为空", trigger: "blur" }
+        ],
+        name: [
+          { required: true, message: "资产分类名称不能为空", trigger: "blur" }
+        ],
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询资产分类列表 */
+    getList() {
+      this.loading = true;
+      listCategory(this.queryParams).then(response => {
+        this.categoryList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        number: null,
+        name: null,
+        remark: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加资产分类";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getCategory(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改资产分类";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateCategory(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addCategory(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除资产分类编号为"' + ids + '"的数据项?').then(function() {
+        return delCategory(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('asset/category/export', {
+        ...this.queryParams
+      }, `category_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 344 - 0
lab-ui/src/views/asset/fault/index.vue

@@ -0,0 +1,344 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="设备条形码" prop="assetBarCode">
+        <el-input
+          v-model="queryParams.assetBarCode"
+          placeholder="请输入设备条形码"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="报备人" prop="userId">
+        <el-input
+          v-model="queryParams.userId"
+          placeholder="请输入报备人"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="报备时间" prop="reportDate">
+        <el-date-picker clearable
+          v-model="queryParams.reportDate"
+          type="date"
+          value-format="yyyy-MM-dd"
+          placeholder="请选择报备时间">
+        </el-date-picker>
+      </el-form-item>
+      <el-form-item label="处理状态" prop="processState">
+        <el-select v-model="queryParams.processState" placeholder="请选择处理状态" clearable>
+          <el-option
+            v-for="dict in dict.type.asset_fault_process_state"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['asset:fault:add']"
+        >新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['asset:fault:edit']"
+        >修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['asset:fault:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['asset:fault:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="faultList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="报备编号" align="center" prop="id" />
+      <el-table-column label="设备条形码" align="center" prop="assetBarCode" />
+      <el-table-column label="报备人" align="center" prop="userId" />
+      <el-table-column label="报备时间" align="center" prop="reportDate" width="180">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.reportDate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="故障现象" align="center" prop="faultPhenomenon" />
+      <el-table-column label="报备人电话" align="center" prop="tel" />
+      <el-table-column label="处理状态" align="center" prop="processState">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.asset_fault_process_state" :value="scope.row.processState"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="处理结果" align="center" prop="processResult" />
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['asset:fault:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['asset:fault:remove']"
+          >删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+    
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改故障报备对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="设备条形码" prop="assetBarCode">
+          <el-input v-model="form.assetBarCode" placeholder="请输入设备条形码" />
+        </el-form-item>
+        <el-form-item label="报备人" prop="userId">
+          <el-input v-model="form.userId" placeholder="请输入报备人" />
+        </el-form-item>
+        <el-form-item label="报备时间" prop="reportDate">
+          <el-date-picker clearable
+            v-model="form.reportDate"
+            type="date"
+            value-format="yyyy-MM-dd"
+            placeholder="请选择报备时间">
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item label="故障现象" prop="faultPhenomenon">
+          <el-input v-model="form.faultPhenomenon" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+        <el-form-item label="报备人电话" prop="tel">
+          <el-input v-model="form.tel" placeholder="请输入报备人电话" />
+        </el-form-item>
+        <el-form-item label="处理状态" prop="processState">
+          <el-select v-model="form.processState" placeholder="请选择处理状态">
+            <el-option
+              v-for="dict in dict.type.asset_fault_process_state"
+              :key="dict.value"
+              :label="dict.label"
+:value="parseInt(dict.value)"
+            ></el-option>
+          </el-select>
+        </el-form-item>
+        <el-form-item label="处理结果" prop="processResult">
+          <el-input v-model="form.processResult" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listFault, getFault, delFault, addFault, updateFault } from "@/api/asset/fault";
+
+export default {
+  name: "Fault",
+  dicts: ['asset_fault_process_state'],
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 故障报备表格数据
+      faultList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        assetBarCode: null,
+        userId: null,
+        reportDate: null,
+        faultPhenomenon: null,
+        processState: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        assetBarCode: [
+          { required: true, message: "设备条形码不能为空", trigger: "blur" }
+        ],
+        userId: [
+          { required: true, message: "报备人不能为空", trigger: "blur" }
+        ],
+        reportDate: [
+          { required: true, message: "报备时间不能为空", trigger: "blur" }
+        ],
+        faultPhenomenon: [
+          { required: true, message: "故障现象不能为空", trigger: "blur" }
+        ],
+        tel: [
+          { required: true, message: "报备人电话不能为空", trigger: "blur" }
+        ],
+        processState: [
+          { required: true, message: "处理状态不能为空", trigger: "change" }
+        ],
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询故障报备列表 */
+    getList() {
+      this.loading = true;
+      listFault(this.queryParams).then(response => {
+        this.faultList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        assetBarCode: null,
+        userId: null,
+        reportDate: null,
+        faultPhenomenon: null,
+        tel: null,
+        processState: null,
+        processResult: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加故障报备";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getFault(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改故障报备";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateFault(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addFault(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除故障报备编号为"' + ids + '"的数据项?').then(function() {
+        return delFault(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('asset/fault/export', {
+        ...this.queryParams
+      }, `fault_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 254 - 0
lab-ui/src/views/asset/place/index.vue

@@ -0,0 +1,254 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="地点名称" prop="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入地点名称"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['asset:place:add']"
+        >新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['asset:place:edit']"
+        >修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['asset:place:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['asset:place:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="placeList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="编号" align="center" prop="id" />
+      <el-table-column label="地点名称" align="center" prop="name" />
+      <el-table-column label="用途" align="center" prop="purpose" />
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['asset:place:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['asset:place:remove']"
+          >删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+    
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改地点对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="地点名称" prop="name">
+          <el-input v-model="form.name" placeholder="请输入地点名称" />
+        </el-form-item>
+        <el-form-item label="用途" prop="purpose">
+          <el-input v-model="form.purpose" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listPlace, getPlace, delPlace, addPlace, updatePlace } from "@/api/asset/place";
+
+export default {
+  name: "Place",
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 地点表格数据
+      placeList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        name: null,
+        purpose: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        name: [
+          { required: true, message: "地点名称不能为空", trigger: "blur" }
+        ],
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询地点列表 */
+    getList() {
+      this.loading = true;
+      listPlace(this.queryParams).then(response => {
+        this.placeList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        name: null,
+        purpose: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加地点";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getPlace(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改地点";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updatePlace(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addPlace(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除地点编号为"' + ids + '"的数据项?').then(function() {
+        return delPlace(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('asset/place/export', {
+        ...this.queryParams
+      }, `place_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 290 - 0
lab-ui/src/views/asset/record/index.vue

@@ -0,0 +1,290 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="设备条形码" prop="assetBarCode">
+        <el-input
+          v-model="queryParams.assetBarCode"
+          placeholder="请输入设备条形码"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="最近故障时间" prop="lastFaultDate">
+        <el-date-picker clearable
+          v-model="queryParams.lastFaultDate"
+          type="date"
+          value-format="yyyy-MM-dd"
+          placeholder="请选择最近故障时间">
+        </el-date-picker>
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['asset:record:add']"
+        >新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['asset:record:edit']"
+        >修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['asset:record:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['asset:record:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="recordList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="记录编号" align="center" prop="id" />
+      <el-table-column label="设备条形码" align="center" prop="assetBarCode" />
+      <el-table-column label="借用次数" align="center" prop="borrowNumber" />
+      <el-table-column label="故障次数" align="center" prop="faultNumber" />
+      <el-table-column label="最近故障时间" align="center" prop="lastFaultDate" width="180">
+        <template slot-scope="scope">
+          <span>{{ parseTime(scope.row.lastFaultDate, '{y}-{m}-{d}') }}</span>
+        </template>
+      </el-table-column>
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['asset:record:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['asset:record:remove']"
+          >删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+    
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 添加或修改资产设备状态记录对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="设备条形码" prop="assetBarCode">
+          <el-input v-model="form.assetBarCode" placeholder="请输入设备条形码" />
+        </el-form-item>
+        <el-form-item label="借用次数" prop="borrowNumber">
+          <el-input v-model="form.borrowNumber" placeholder="请输入借用次数" />
+        </el-form-item>
+        <el-form-item label="故障次数" prop="faultNumber">
+          <el-input v-model="form.faultNumber" placeholder="请输入故障次数" />
+        </el-form-item>
+        <el-form-item label="最近故障时间" prop="lastFaultDate">
+          <el-date-picker clearable
+            v-model="form.lastFaultDate"
+            type="date"
+            value-format="yyyy-MM-dd"
+            placeholder="请选择最近故障时间">
+          </el-date-picker>
+        </el-form-item>
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">确 定</el-button>
+        <el-button @click="cancel">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listRecord, getRecord, delRecord, addRecord, updateRecord } from "@/api/asset/record";
+
+export default {
+  name: "Record",
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 资产设备状态记录表格数据
+      recordList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        assetBarCode: null,
+        lastFaultDate: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        assetBarCode: [
+          { required: true, message: "设备条形码不能为空", trigger: "blur" }
+        ],
+        borrowNumber: [
+          { required: true, message: "借用次数不能为空", trigger: "blur" }
+        ],
+        faultNumber: [
+          { required: true, message: "故障次数不能为空", trigger: "blur" }
+        ],
+        lastFaultDate: [
+          { required: true, message: "最近故障时间不能为空", trigger: "blur" }
+        ]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询资产设备状态记录列表 */
+    getList() {
+      this.loading = true;
+      listRecord(this.queryParams).then(response => {
+        this.recordList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        assetBarCode: null,
+        borrowNumber: null,
+        faultNumber: null,
+        lastFaultDate: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加资产设备状态记录";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getRecord(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改资产设备状态记录";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateRecord(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addRecord(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除资产设备状态记录编号为"' + ids + '"的数据项?').then(function() {
+        return delRecord(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('asset/record/export', {
+        ...this.queryParams
+      }, `record_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>