|
|
@ -28,15 +28,15 @@ import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
* @date 2024-04-29
|
|
|
|
* @date 2024-04-29
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@Controller
|
|
|
|
@Controller
|
|
|
|
@RequestMapping("/system/propertyinfo")
|
|
|
|
@RequestMapping("/system/property/data")
|
|
|
|
public class TdPropertyInfoController extends BaseController
|
|
|
|
public class TdPropertyInfoController extends BaseController
|
|
|
|
{
|
|
|
|
{
|
|
|
|
private String prefix = "system/propertyinfo";
|
|
|
|
private String prefix = "system/property/data";
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
@Autowired
|
|
|
|
private ITdPropertyInfoService tdPropertyInfoService;
|
|
|
|
private ITdPropertyInfoService tdPropertyInfoService;
|
|
|
|
|
|
|
|
|
|
|
|
@RequiresPermissions("system:propertyinfo:view")
|
|
|
|
@RequiresPermissions("system:property:view")
|
|
|
|
@GetMapping()
|
|
|
|
@GetMapping()
|
|
|
|
public String propertyinfo()
|
|
|
|
public String propertyinfo()
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -46,20 +46,21 @@ public class TdPropertyInfoController extends BaseController
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 查询资产管理列表
|
|
|
|
* 查询资产管理列表
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@RequiresPermissions("system:propertyinfo:list")
|
|
|
|
@RequiresPermissions("system:property:list")
|
|
|
|
@PostMapping("/list")
|
|
|
|
@GetMapping("/list/{useId}")
|
|
|
|
@ResponseBody
|
|
|
|
//@ResponseBody
|
|
|
|
public TableDataInfo list(TdPropertyInfo tdPropertyInfo)
|
|
|
|
public TableDataInfo list(@PathVariable("useId") String useId, TdPropertyInfo tdPropertyInfo)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
startPage();
|
|
|
|
startPage();
|
|
|
|
List<TdPropertyInfo> list = tdPropertyInfoService.selectTdPropertyInfoList(tdPropertyInfo);
|
|
|
|
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoByUseId(useId);
|
|
|
|
return getDataTable(list);
|
|
|
|
//List<TdPropertyInfo> list = tdPropertyInfoService.selectTdPropertyInfoList(tdPropertyInfo);
|
|
|
|
|
|
|
|
return getDataTable(tdPropertyInfos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 导出资产管理列表
|
|
|
|
* 导出资产管理列表
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@RequiresPermissions("system:propertyinfo:export")
|
|
|
|
@RequiresPermissions("system:property:export")
|
|
|
|
@Log(title = "资产管理", businessType = BusinessType.EXPORT)
|
|
|
|
@Log(title = "资产管理", businessType = BusinessType.EXPORT)
|
|
|
|
@PostMapping("/export")
|
|
|
|
@PostMapping("/export")
|
|
|
|
@ResponseBody
|
|
|
|
@ResponseBody
|
|
|
@ -73,17 +74,17 @@ public class TdPropertyInfoController extends BaseController
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 新增资产管理
|
|
|
|
* 新增资产管理
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@GetMapping("/add")
|
|
|
|
@GetMapping("/add/{useId}")
|
|
|
|
public String add()
|
|
|
|
public String add(@PathVariable("useId") String useId, ModelMap mmap)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
mmap.put("useId", useId);
|
|
|
|
return prefix + "/add";
|
|
|
|
return prefix + "/add";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 新增保存资产管理
|
|
|
|
* 新增保存资产管理
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@RequiresPermissions("system:propertyinfo:add")
|
|
|
|
@RequiresPermissions("system:property:add")
|
|
|
|
@Log(title = "资产管理", businessType = BusinessType.INSERT)
|
|
|
|
@Log(title = "资产管理", businessType = BusinessType.INSERT)
|
|
|
|
@PostMapping("/add")
|
|
|
|
@PostMapping("/add")
|
|
|
|
@ResponseBody
|
|
|
|
@ResponseBody
|
|
|
@ -96,7 +97,7 @@ public class TdPropertyInfoController extends BaseController
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 修改资产管理
|
|
|
|
* 修改资产管理
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@RequiresPermissions("system:propertyinfo:edit")
|
|
|
|
@RequiresPermissions("system:property:edit")
|
|
|
|
@GetMapping("/edit/{id}")
|
|
|
|
@GetMapping("/edit/{id}")
|
|
|
|
public String edit(@PathVariable("id") String id, ModelMap mmap)
|
|
|
|
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)
|
|
|
|
@Log(title = "资产管理", businessType = BusinessType.UPDATE)
|
|
|
|
@PostMapping("/edit")
|
|
|
|
@PostMapping("/edit")
|
|
|
|
@ResponseBody
|
|
|
|
@ResponseBody
|
|
|
@ -120,7 +121,7 @@ public class TdPropertyInfoController extends BaseController
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 删除资产管理
|
|
|
|
* 删除资产管理
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@RequiresPermissions("system:propertyinfo:remove")
|
|
|
|
@RequiresPermissions("system:property:remove")
|
|
|
|
@Log(title = "资产管理", businessType = BusinessType.DELETE)
|
|
|
|
@Log(title = "资产管理", businessType = BusinessType.DELETE)
|
|
|
|
@PostMapping( "/remove")
|
|
|
|
@PostMapping( "/remove")
|
|
|
|
@ResponseBody
|
|
|
|
@ResponseBody
|
|
|
@ -129,9 +130,5 @@ public class TdPropertyInfoController extends BaseController
|
|
|
|
return toAjax(tdPropertyInfoService.deleteTdPropertyInfoByIds(ids));
|
|
|
|
return toAjax(tdPropertyInfoService.deleteTdPropertyInfoByIds(ids));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 添加设备信息
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|