diff --git a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsDetectorsController.java b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsDetectorsController.java index ece3127f..21303030 100644 --- a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsDetectorsController.java +++ b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsDetectorsController.java @@ -12,42 +12,42 @@ import org.springframework.web.bind.annotation.*; @RestController @RequestMapping("gardsDetectors") -@Api("监测器管理") +@Api(value = "监测器管理", tags = "监测器管理") public class GardsDetectorsController { @Autowired private IGardsDetectorsService gardsDetectorsService; @GetMapping("findPage") - @ApiOperation(value = "分页查询监测器") + @ApiOperation(value = "分页查询监测器", tags = "分页查询监测器") public Result> findPage(QueryRequest queryRequest, GardsDetectors gardsDetectors){ Result> result = gardsDetectorsService.findPage(queryRequest, gardsDetectors); return result; } @GetMapping("findInfo") - @ApiOperation(value = "查询监测器详情信息") + @ApiOperation(value = "查询监测器详情信息", tags = "查询监测器详情信息") public GardsDetectors findInfo(Integer id){ GardsDetectors result = gardsDetectorsService.findInfo(id); return result; } @PostMapping("create") - @ApiOperation(value = "新增监测器信息") + @ApiOperation(value = "新增监测器信息", tags = "新增监测器信息") public Result create(@RequestBody GardsDetectors gardsDetectors){ Result result = gardsDetectorsService.create(gardsDetectors); return result; } @PutMapping("update") - @ApiOperation(value = "修改监测器信息") + @ApiOperation(value = "修改监测器信息", tags = "修改监测器信息") public Result update(@RequestBody GardsDetectors gardsDetectors){ Result result = gardsDetectorsService.update(gardsDetectors); return result; } @DeleteMapping("deleteById") - @ApiOperation(value = "删除监测器信息") + @ApiOperation(value = "删除监测器信息", tags = "删除监测器信息") public Result deleteById(Integer id){ Result result = gardsDetectorsService.deleteById(id); return result; diff --git a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsNuclearfacilityController.java b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsNuclearfacilityController.java index 9c8fefbc..bc4bf397 100644 --- a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsNuclearfacilityController.java +++ b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsNuclearfacilityController.java @@ -12,42 +12,42 @@ import org.springframework.web.bind.annotation.*; @RestController @RequestMapping("gardsNuclearfacility") -@Api("核设施管理") +@Api(value = "核设施管理", tags = "核设施管理") public class GardsNuclearfacilityController { @Autowired private IGardsNuclearfacilityService gardsNuclearfacilityService; @GetMapping("findPage") - @ApiOperation(value = "分页查询核设施信息") + @ApiOperation(value = "分页查询核设施信息", tags = "分页查询核设施信息") public Result> findPage(QueryRequest queryRequest, GardsNuclearfacility gardsNuclearfacility){ Result> result = gardsNuclearfacilityService.findPage(queryRequest, gardsNuclearfacility); return result; } @GetMapping("findInfo") - @ApiOperation(value = "查询核设施详情信息") + @ApiOperation(value = "查询核设施详情信息", tags = "查询核设施详情信息") public GardsNuclearfacility findInfo(Integer id){ GardsNuclearfacility result = gardsNuclearfacilityService.findInfo(id); return result; } @PostMapping("create") - @ApiOperation(value = "新增核设施信息") + @ApiOperation(value = "新增核设施信息", tags = "新增核设施信息") public Result create(@RequestBody GardsNuclearfacility gardsNuclearfacility){ Result result = gardsNuclearfacilityService.create(gardsNuclearfacility); return result; } @PutMapping("update") - @ApiOperation(value = "修改核设施信息") + @ApiOperation(value = "修改核设施信息", tags = "修改核设施信息") public Result update(@RequestBody GardsNuclearfacility gardsNuclearfacility){ Result result = gardsNuclearfacilityService.update(gardsNuclearfacility); return result; } @DeleteMapping("deleteById") - @ApiOperation(value = "删除核设施信息") + @ApiOperation(value = "删除核设施信息", tags = "删除核设施信息") public Result deleteById(Integer id){ Result result = gardsNuclearfacilityService.deleteById(id); return result; diff --git a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsSelfbuiltController.java b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsSelfbuiltController.java index d283fe75..1b41de5c 100644 --- a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsSelfbuiltController.java +++ b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsSelfbuiltController.java @@ -12,42 +12,42 @@ import org.springframework.web.bind.annotation.*; @RestController @RequestMapping("gardsSelfbuilt") -@Api("自建台站管理") +@Api(value = "自建台站管理", tags = "自建台站管理") public class GardsSelfbuiltController { @Autowired private IGardsSelfbuiltService gardsSelfbuiltService; @GetMapping("findPage") - @ApiOperation("分页查询自建台站信息") + @ApiOperation(value = "分页查询自建台站信息", tags = "分页查询自建台站信息") public Result> findPage(QueryRequest queryRequest, GardsSelfbuiltStations gardsSelfbuiltStations){ Result> result = gardsSelfbuiltService.findPage(queryRequest, gardsSelfbuiltStations); return result; } @GetMapping("findInfo") - @ApiOperation("查询自建台站详情信息") + @ApiOperation(value = "查询自建台站详情信息", tags = "查询自建台站详情信息") public GardsSelfbuiltStations findInfo(Integer id){ GardsSelfbuiltStations info = gardsSelfbuiltService.findInfo(id); return info; } @PostMapping("create") - @ApiOperation("新增自建台站信息") + @ApiOperation(value = "新增自建台站信息", tags = "新增自建台站信息") public Result create(@RequestBody GardsSelfbuiltStations gardsSelfbuiltStations){ Result result = gardsSelfbuiltService.create(gardsSelfbuiltStations); return result; } @PutMapping("update") - @ApiOperation("修改自建台站信息") + @ApiOperation(value = "修改自建台站信息", tags = "修改自建台站信息") public Result update(@RequestBody GardsSelfbuiltStations gardsSelfbuiltStations){ Result result = gardsSelfbuiltService.update(gardsSelfbuiltStations); return result; } @DeleteMapping("deleteById") - @ApiOperation("删除自建台站信息") + @ApiOperation(value = "删除自建台站信息", tags = "删除自建台站信息") public Result deleteById(Integer id){ Result result = gardsSelfbuiltService.deleteById(id); return result; diff --git a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsStationsController.java b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsStationsController.java index 6d7b12bc..395c4471 100644 --- a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsStationsController.java +++ b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/GardsStationsController.java @@ -12,7 +12,7 @@ import org.springframework.web.bind.annotation.*; @RestController @RequestMapping("gardsStations") -@Api("台站管理") +@Api(value = "台站管理", tags = "台站管理") public class GardsStationsController { @Autowired @@ -25,7 +25,7 @@ public class GardsStationsController { * @return */ @GetMapping("findPage") - @ApiOperation("分页查询台站管理信息") + @ApiOperation(value = "分页查询台站管理信息", tags = "分页查询台站管理信息") public Result> findPage(QueryRequest queryRequest, GardsStations gardsStations){ Result> result = gardsStationsService.findPage(queryRequest, gardsStations); return result; @@ -37,7 +37,7 @@ public class GardsStationsController { * @return */ @GetMapping("findInfo") - @ApiOperation("查询台站管理详情信息") + @ApiOperation(value = "查询台站管理详情信息", tags = "查询台站管理详情信息") public GardsStations findInfo(Integer stationId){ GardsStations result = gardsStationsService.findInfo(stationId); return result; @@ -47,7 +47,7 @@ public class GardsStationsController { * 新增台站信息接口 */ @PostMapping("create") - @ApiOperation("新增台站管理信息") + @ApiOperation(value = "新增台站管理信息", tags = "新增台站管理信息") public Result create(@RequestBody GardsStations gardsStations){ Result result = gardsStationsService.create(gardsStations); return result; @@ -57,7 +57,7 @@ public class GardsStationsController { * 修改台站信息接口 */ @PutMapping("update") - @ApiOperation("修改台站管理信息") + @ApiOperation(value = "修改台站管理信息", tags = "修改台站管理信息") public Result update(@RequestBody GardsStations gardsStations){ Result result = gardsStationsService.update(gardsStations); return result; @@ -68,7 +68,7 @@ public class GardsStationsController { * @param stationId */ @DeleteMapping("deleteById") - @ApiOperation("删除台站管理信息") + @ApiOperation(value = "删除台站管理信息", tags = "删除台站管理信息") public Result deleteById(Integer stationId){ Result result = gardsStationsService.deleteById(stationId); return result;