diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyInfoController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyInfoController.java index f7a2787..de4e645 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyInfoController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyInfoController.java @@ -28,15 +28,15 @@ import com.ruoyi.common.core.page.TableDataInfo; * @date 2024-04-29 */ @Controller -@RequestMapping("/system/propertyinfo") +@RequestMapping("/system/property/data") public class TdPropertyInfoController extends BaseController { - private String prefix = "system/propertyinfo"; + private String prefix = "system/property/data"; @Autowired private ITdPropertyInfoService tdPropertyInfoService; - @RequiresPermissions("system:propertyinfo:view") + @RequiresPermissions("system:property:view") @GetMapping() public String propertyinfo() { @@ -46,20 +46,21 @@ public class TdPropertyInfoController extends BaseController /** * 查询资产管理列表 */ - @RequiresPermissions("system:propertyinfo:list") - @PostMapping("/list") - @ResponseBody - public TableDataInfo list(TdPropertyInfo tdPropertyInfo) + @RequiresPermissions("system:property:list") + @GetMapping("/list/{useId}") + //@ResponseBody + public TableDataInfo list(@PathVariable("useId") String useId, TdPropertyInfo tdPropertyInfo) { startPage(); - List list = tdPropertyInfoService.selectTdPropertyInfoList(tdPropertyInfo); - return getDataTable(list); + List tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoByUseId(useId); + //List list = tdPropertyInfoService.selectTdPropertyInfoList(tdPropertyInfo); + return getDataTable(tdPropertyInfos); } /** * 导出资产管理列表 */ - @RequiresPermissions("system:propertyinfo:export") + @RequiresPermissions("system:property:export") @Log(title = "资产管理", businessType = BusinessType.EXPORT) @PostMapping("/export") @ResponseBody @@ -73,17 +74,17 @@ public class TdPropertyInfoController extends BaseController /** * 新增资产管理 */ - @GetMapping("/add") - public String add() + @GetMapping("/add/{useId}") + public String add(@PathVariable("useId") String useId, ModelMap mmap) { - + mmap.put("useId", useId); return prefix + "/add"; } /** * 新增保存资产管理 */ - @RequiresPermissions("system:propertyinfo:add") + @RequiresPermissions("system:property:add") @Log(title = "资产管理", businessType = BusinessType.INSERT) @PostMapping("/add") @ResponseBody @@ -96,7 +97,7 @@ public class TdPropertyInfoController extends BaseController /** * 修改资产管理 */ - @RequiresPermissions("system:propertyinfo:edit") + @RequiresPermissions("system:property:edit") @GetMapping("/edit/{id}") public String edit(@PathVariable("id") String id, ModelMap mmap) { @@ -108,7 +109,7 @@ public class TdPropertyInfoController extends BaseController /** * 修改保存资产管理 */ - @RequiresPermissions("system:propertyinfo:edit") + @RequiresPermissions("system:property:edit") @Log(title = "资产管理", businessType = BusinessType.UPDATE) @PostMapping("/edit") @ResponseBody @@ -120,7 +121,7 @@ public class TdPropertyInfoController extends BaseController /** * 删除资产管理 */ - @RequiresPermissions("system:propertyinfo:remove") + @RequiresPermissions("system:property:remove") @Log(title = "资产管理", businessType = BusinessType.DELETE) @PostMapping( "/remove") @ResponseBody @@ -129,9 +130,5 @@ public class TdPropertyInfoController extends BaseController return toAjax(tdPropertyInfoService.deleteTdPropertyInfoByIds(ids)); } - /** - * 添加设备信息 - */ - } diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyManagerController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyManagerController.java index 5c489f5..f300869 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyManagerController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/system/TdPropertyManagerController.java @@ -34,7 +34,7 @@ import com.ruoyi.common.core.page.TableDataInfo; @RequestMapping("/system/property") public class TdPropertyManagerController extends BaseController { - private String prefix = "system/property"; + private String prefix = "system/property/property"; @Autowired private ITdPropertyManagerService tdPropertyManagerService; @@ -136,15 +136,13 @@ public class TdPropertyManagerController extends BaseController /** * 添加资产条目 */ - @RequiresPermissions("system:property:addproperty") - @GetMapping("/propertyinfo/{useId}") - public String addproperty(@PathVariable("useId") String useId,ModelMap mmap) + @RequiresPermissions("system:property:list") + @GetMapping("/detail/{useId}") + public String detail(@PathVariable("useId") String useId, ModelMap mmap) { - List tdPropertyInfos = tdPropertyInfoService.listByIds(Collections.singleton(useId)); - mmap.put("tdPropertyInfos", tdPropertyInfos); - return prefix + "/propertyinfo"; + mmap.put("useId",useId); + // mmap.put("property", tdPropertyInfoService.selectTdPropertyInfoByUseId(useId)); + return "system/property/data/propertyinfo"; } - - } diff --git a/ruoyi-admin/src/main/resources/templates/system/checkresult/docheck.html b/ruoyi-admin/src/main/resources/templates/system/checkresult/docheck.html index ddb4d63..2a8b702 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkresult/docheck.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkresult/docheck.html @@ -277,14 +277,14 @@ \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/templates/system/property/propertyentry/addproperty.html b/ruoyi-admin/src/main/resources/templates/system/property/propertyentry/addproperty.html deleted file mode 100644 index 566549b..0000000 --- a/ruoyi-admin/src/main/resources/templates/system/property/propertyentry/addproperty.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - - Title - - - - - \ No newline at end of file diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdPropertyInfoMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdPropertyInfoMapper.java index 542dfc2..729c17c 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdPropertyInfoMapper.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TdPropertyInfoMapper.java @@ -21,6 +21,8 @@ public interface TdPropertyInfoMapper extends BaseMapper */ public TdPropertyInfo selectTdPropertyInfoById(String id); + public List selectTdPropertyInfoByUseId(String id); + /** * 查询资产管理列表 * diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdPropertyInfoService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdPropertyInfoService.java index 1c0318b..c0ca4ef 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdPropertyInfoService.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/ITdPropertyInfoService.java @@ -20,6 +20,8 @@ public interface ITdPropertyInfoService extends IService * @return 资产管理 */ public TdPropertyInfo selectTdPropertyInfoById(String id); + public List selectTdPropertyInfoByUseId(String id); + /** * 查询资产管理列表 diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyInfoServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyInfoServiceImpl.java index bd60f10..a91401d 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyInfoServiceImpl.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TdPropertyInfoServiceImpl.java @@ -34,6 +34,12 @@ public class TdPropertyInfoServiceImpl extends ServiceImpl selectTdPropertyInfoByUseId(String id) + { + return tdPropertyInfoMapper.selectTdPropertyInfoByUseId(id); + } + /** * 查询资产管理列表 * diff --git a/ruoyi-system/src/main/resources/mapper/system/TdPropertyInfoMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdPropertyInfoMapper.xml index 11ae434..ee22739 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TdPropertyInfoMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TdPropertyInfoMapper.xml @@ -75,6 +75,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" where id = #{id} + + insert into td_property_info