|
|
@ -43,7 +43,7 @@ public class DcInfoBoardVocabularyController extends BaseController |
|
|
|
* 查询情报板敏感字管理列表 |
|
|
|
*/ |
|
|
|
@ApiOperation("查询情报板敏感字管理列表") |
|
|
|
@PreAuthorize("@ss.hasPermi('business:dcInfoBoardVocabulary:list')") |
|
|
|
// @PreAuthorize("@ss.hasPermi('business:dcInfoBoardVocabulary:list')")
|
|
|
|
@GetMapping("/list") |
|
|
|
public TableDataInfo list(DcInfoBoardVocabulary dcInfoBoardVocabulary) |
|
|
|
{ |
|
|
@ -56,7 +56,7 @@ public class DcInfoBoardVocabularyController extends BaseController |
|
|
|
* 导出情报板敏感字管理列表 |
|
|
|
*/ |
|
|
|
@ApiOperation("导出情报板敏感字管理列表") |
|
|
|
@PreAuthorize("@ss.hasPermi('business:dcInfoBoardVocabulary:export')") |
|
|
|
// @PreAuthorize("@ss.hasPermi('business:dcInfoBoardVocabulary:export')")
|
|
|
|
@Log(title = "情报板敏感字管理", businessType = BusinessType.EXPORT) |
|
|
|
@PostMapping("/export") |
|
|
|
public void export(HttpServletResponse response, DcInfoBoardVocabulary dcInfoBoardVocabulary) |
|
|
@ -70,7 +70,7 @@ public class DcInfoBoardVocabularyController extends BaseController |
|
|
|
* 获取情报板敏感字管理详细信息 |
|
|
|
*/ |
|
|
|
@ApiOperation("获取情报板敏感字管理详细信息") |
|
|
|
@PreAuthorize("@ss.hasPermi('business:dcInfoBoardVocabulary:query')") |
|
|
|
// @PreAuthorize("@ss.hasPermi('business:dcInfoBoardVocabulary:query')")
|
|
|
|
@GetMapping(value = "/{id}") |
|
|
|
public AjaxResult getInfo(@PathVariable("id") @ApiParam(value="id", name="id", required=true) Long id) |
|
|
|
{ |
|
|
@ -81,7 +81,7 @@ public class DcInfoBoardVocabularyController extends BaseController |
|
|
|
* 新增情报板敏感字管理 |
|
|
|
*/ |
|
|
|
@ApiOperation("新增情报板敏感字管理") |
|
|
|
@PreAuthorize("@ss.hasPermi('business:dcInfoBoardVocabulary:add')") |
|
|
|
// @PreAuthorize("@ss.hasPermi('business:dcInfoBoardVocabulary:add')")
|
|
|
|
@Log(title = "情报板敏感字管理", businessType = BusinessType.INSERT) |
|
|
|
@PostMapping |
|
|
|
public AjaxResult add(@RequestBody DcInfoBoardVocabulary dcInfoBoardVocabulary) |
|
|
@ -93,7 +93,7 @@ public class DcInfoBoardVocabularyController extends BaseController |
|
|
|
* 修改情报板敏感字管理 |
|
|
|
*/ |
|
|
|
@ApiOperation("修改情报板敏感字管理") |
|
|
|
@PreAuthorize("@ss.hasPermi('business:dcInfoBoardVocabulary:edit')") |
|
|
|
// @PreAuthorize("@ss.hasPermi('business:dcInfoBoardVocabulary:edit')")
|
|
|
|
@Log(title = "情报板敏感字管理", businessType = BusinessType.UPDATE) |
|
|
|
@PutMapping |
|
|
|
public AjaxResult edit(@RequestBody DcInfoBoardVocabulary dcInfoBoardVocabulary) |
|
|
@ -105,7 +105,7 @@ public class DcInfoBoardVocabularyController extends BaseController |
|
|
|
* 删除情报板敏感字管理 |
|
|
|
*/ |
|
|
|
@ApiOperation("删除情报板敏感字管理") |
|
|
|
@PreAuthorize("@ss.hasPermi('business:dcInfoBoardVocabulary:remove')") |
|
|
|
// @PreAuthorize("@ss.hasPermi('business:dcInfoBoardVocabulary:remove')")
|
|
|
|
@Log(title = "情报板敏感字管理", businessType = BusinessType.DELETE) |
|
|
|
@DeleteMapping("/{id}") |
|
|
|
public AjaxResult remove(@PathVariable @ApiParam(value="id", name="id", required=true) Long id) |
|
|
|