修改接口名称

结构优化
648540858 2023-09-01 09:22:46 +08:00
parent 6f6764eda5
commit 63e766eb75
1 changed files with 4 additions and 5 deletions

View File

@ -9,7 +9,7 @@ import io.swagger.v3.oas.annotations.tags.Tag;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
@ -32,7 +32,7 @@ public class CommonChannelController {
* *
* @param civilCode * @param civilCode
*/ */
@DeleteMapping("/region/list") @GetMapping("/region/list")
@Operation(summary = "查询区域下的通道") @Operation(summary = "查询区域下的通道")
@Parameter(name = "civilCode", description = "区域编号") @Parameter(name = "civilCode", description = "区域编号")
public List<CommonGbChannel> getChannelsInRegion(String civilCode) { public List<CommonGbChannel> getChannelsInRegion(String civilCode) {
@ -45,20 +45,19 @@ public class CommonChannelController {
* *
* @param businessGroupID ID * @param businessGroupID ID
*/ */
@DeleteMapping("/region/list") @GetMapping("/group/list")
@Operation(summary = "查询分组下的通道") @Operation(summary = "查询分组下的通道")
@Parameter(name = "businessGroupID", description = "业务分组ID") @Parameter(name = "businessGroupID", description = "业务分组ID")
public List<CommonGbChannel> getChannelsInBusinessGroup(String businessGroupID) { public List<CommonGbChannel> getChannelsInBusinessGroup(String businessGroupID) {
return commonGbChannelService.getChannelsInBusinessGroup(businessGroupID); return commonGbChannelService.getChannelsInBusinessGroup(businessGroupID);
} }
/** /**
* *
* *
* @param deviceId * @param deviceId
*/ */
@DeleteMapping("/sync/device") @GetMapping("/sync/device")
@Operation(summary = "从下级设备中同步通道") @Operation(summary = "从下级设备中同步通道")
@Parameter(name = "deviceId", description = "设备编号") @Parameter(name = "deviceId", description = "设备编号")
@Parameter(name = "syncKeys", description = "选择性同步的字段") @Parameter(name = "syncKeys", description = "选择性同步的字段")