涉密设备销毁

pg_adapter
20918 8 months ago
parent c3ab1cd781
commit 9e528dfb08

@ -0,0 +1,68 @@
package com.ruoyi.web.controller.system.property;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.system.domain.TdPropertyEment;
import com.ruoyi.web.controller.manager.TdPropertyEmentManager;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import java.util.List;
/**
* Controller
*/
@Controller
@RequestMapping("/system/ementDestory")
public class TdPropertyEmentDestoryController extends BaseController {
private String prefix = "system/property/ementDestory";
@Autowired
private TdPropertyEmentManager tdPropertyEmentManager;
@RequiresPermissions("system:ementDestory:view")
@GetMapping()
public String ementDestory() {
return prefix + "/ementList";
}
/**
*
*/
@RequiresPermissions("system:ementDestory:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(TdPropertyEment tdPropertyEment) {
startPage();
List<TdPropertyEment> tdPropertyEments = tdPropertyEmentManager.selectEmentList(tdPropertyEment);
return getDataTable(tdPropertyEments);
}
/**
*
*/
@RequiresPermissions("system:ementDestory:destroy")
@GetMapping("/destory/{id}")
public String ementDestory(@PathVariable("id") String id, ModelMap mmap) {
TdPropertyEment tdPropertyEment = tdPropertyEmentManager.selecttdEment(id);
mmap.put("tdPropertyEment", tdPropertyEment);
return prefix + "/ementDestory";
}
/**
*
*/
@RequiresPermissions("system:ementDestory:destroy")
@Log(title = "涉密设备销毁", businessType = BusinessType.UPDATE)
@PostMapping("/update")
@ResponseBody
public AjaxResult update(TdPropertyEment tdPropertyEment) {
return toAjax(tdPropertyEmentManager.saveOrUpdate(tdPropertyEment));
}
}

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>
Loading…
Cancel
Save