update 国内、海外Swagger注释
This commit is contained in:
+3
-3
@@ -116,12 +116,12 @@ public class LawsDomesticController {
|
||||
return Result.OK(lawsCommonService.getByIdAndModule(id, MODULE_VALUE, type, null));
|
||||
}
|
||||
|
||||
@AutoLog(value = "国内法规标准-根据ids和模块标识删除信息")
|
||||
@ApiOperation(value="国内法规标准-根据ids和模块标识删除信息", notes="国内法规标准-根据ids和模块标识删除信息")
|
||||
@AutoLog(value = "国内法规标准-根据ids删除信息")
|
||||
@ApiOperation(value="国内法规标准-根据ids删除信息", notes="国内法规标准-根据ids删除信息")
|
||||
@PostMapping(value = "deleteByIdsAndModule")
|
||||
@ApiOperationSupport(order = 8)
|
||||
@RequiresPermissions("domesticStandard:delete")
|
||||
public Result<String> deleteByIdsAndModule(@RequestBody @ApiParam("标签管理") Map<String,Object> parameterMap) {
|
||||
public Result<String> deleteByIdsAndModule(@RequestBody @ApiParam(name = "ids", value = "主键(多个用逗号分隔)") Map<String,Object> parameterMap) {
|
||||
//删除标准时同步删除这个标准的收藏数据
|
||||
lawsStandardCollectionService.deleteByStandardId((String) parameterMap.get("ids"));
|
||||
lawsStandardSharingService.deleteByStandardId((String) parameterMap.get("ids"));
|
||||
|
||||
+3
-3
@@ -116,12 +116,12 @@ public class LawsOverseasController {
|
||||
return Result.OK(lawsCommonService.getByIdAndModule(id, MODULE_VALUE, type, null));
|
||||
}
|
||||
|
||||
@AutoLog(value = "海外法规标准-根据ids和模块标识删除信息")
|
||||
@ApiOperation(value="海外法规标准-根据ids和模块标识删除信息", notes="海外法规标准-根据ids和模块标识删除信息")
|
||||
@AutoLog(value = "海外法规标准-根据ids删除信息")
|
||||
@ApiOperation(value="海外法规标准-根据ids删除信息", notes="海外法规标准-根据ids删除信息")
|
||||
@PostMapping(value = "deleteByIdsAndModule")
|
||||
@ApiOperationSupport(order = 8)
|
||||
@RequiresPermissions("overseasStandard:delete")
|
||||
public Result<String> deleteByIdsAndModule(@RequestBody @ApiParam("标签管理") Map<String,Object> parameterMap) {
|
||||
public Result<String> deleteByIdsAndModule(@RequestBody @ApiParam(name = "ids", value = "主键(多个用逗号分隔)") Map<String,Object> parameterMap) {
|
||||
//删除标准时同步删除这个标准的收藏数据
|
||||
lawsStandardCollectionService.deleteByStandardId((String) parameterMap.get("ids"));
|
||||
lawsStandardSharingService.deleteByStandardId((String) parameterMap.get("ids"));
|
||||
|
||||
Reference in New Issue
Block a user