|
@@ -37,7 +37,6 @@ public class QkZwyxPublicSecurityDocumentsController extends BaseController {
|
|
/**
|
|
/**
|
|
* 查询公安办件列表
|
|
* 查询公安办件列表
|
|
*/
|
|
*/
|
|
-@PreAuthorize("@ss.hasPermi('system:pdocuments:list')")
|
|
|
|
@GetMapping("/list")
|
|
@GetMapping("/list")
|
|
public TableDataInfo list(QkZwyxPublicSecurityDocuments qkZwyxPublicSecurityDocuments) {
|
|
public TableDataInfo list(QkZwyxPublicSecurityDocuments qkZwyxPublicSecurityDocuments) {
|
|
startPage();
|
|
startPage();
|
|
@@ -48,7 +47,6 @@ public class QkZwyxPublicSecurityDocumentsController extends BaseController {
|
|
/**
|
|
/**
|
|
* 导出公安办件列表
|
|
* 导出公安办件列表
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('system:pdocuments:export')")
|
|
|
|
@Log(title = "公安办件", businessType = BusinessType.EXPORT)
|
|
@Log(title = "公安办件", businessType = BusinessType.EXPORT)
|
|
@PostMapping("/export")
|
|
@PostMapping("/export")
|
|
public void export(HttpServletResponse response, QkZwyxPublicSecurityDocuments qkZwyxPublicSecurityDocuments) {
|
|
public void export(HttpServletResponse response, QkZwyxPublicSecurityDocuments qkZwyxPublicSecurityDocuments) {
|
|
@@ -60,7 +58,6 @@ public class QkZwyxPublicSecurityDocumentsController extends BaseController {
|
|
/**
|
|
/**
|
|
* 获取公安办件详细信息
|
|
* 获取公安办件详细信息
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('system:pdocuments:query')")
|
|
|
|
@GetMapping(value = "/{id}")
|
|
@GetMapping(value = "/{id}")
|
|
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
|
public AjaxResult getInfo(@PathVariable("id") Long id) {
|
|
return success(qkZwyxPublicSecurityDocumentsService.selectQkZwyxPublicSecurityDocumentsById(id));
|
|
return success(qkZwyxPublicSecurityDocumentsService.selectQkZwyxPublicSecurityDocumentsById(id));
|
|
@@ -69,7 +66,6 @@ public class QkZwyxPublicSecurityDocumentsController extends BaseController {
|
|
/**
|
|
/**
|
|
* 新增公安办件
|
|
* 新增公安办件
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('system:pdocuments:add')")
|
|
|
|
@Log(title = "公安办件", businessType = BusinessType.INSERT)
|
|
@Log(title = "公安办件", businessType = BusinessType.INSERT)
|
|
@PostMapping
|
|
@PostMapping
|
|
public AjaxResult add(@RequestBody QkZwyxPublicSecurityDocuments qkZwyxPublicSecurityDocuments) {
|
|
public AjaxResult add(@RequestBody QkZwyxPublicSecurityDocuments qkZwyxPublicSecurityDocuments) {
|
|
@@ -79,7 +75,6 @@ public class QkZwyxPublicSecurityDocumentsController extends BaseController {
|
|
/**
|
|
/**
|
|
* 修改公安办件
|
|
* 修改公安办件
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('system:pdocuments:edit')")
|
|
|
|
@Log(title = "公安办件", businessType = BusinessType.UPDATE)
|
|
@Log(title = "公安办件", businessType = BusinessType.UPDATE)
|
|
@PutMapping
|
|
@PutMapping
|
|
public AjaxResult edit(@RequestBody QkZwyxPublicSecurityDocuments qkZwyxPublicSecurityDocuments) {
|
|
public AjaxResult edit(@RequestBody QkZwyxPublicSecurityDocuments qkZwyxPublicSecurityDocuments) {
|
|
@@ -89,7 +84,6 @@ public class QkZwyxPublicSecurityDocumentsController extends BaseController {
|
|
/**
|
|
/**
|
|
* 删除公安办件
|
|
* 删除公安办件
|
|
*/
|
|
*/
|
|
- @PreAuthorize("@ss.hasPermi('system:pdocuments:remove')")
|
|
|
|
@Log(title = "公安办件", businessType = BusinessType.DELETE)
|
|
@Log(title = "公安办件", businessType = BusinessType.DELETE)
|
|
@DeleteMapping("/{ids}")
|
|
@DeleteMapping("/{ids}")
|
|
public AjaxResult remove(@PathVariable Long[] ids) {
|
|
public AjaxResult remove(@PathVariable Long[] ids) {
|