|
|
@@ -85,9 +85,6 @@ public class PlatformController {
|
|
|
* @return
|
|
|
*/
|
|
|
@ApiOperation("保存上级平台信息")
|
|
|
- @ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "parentPlatform", value = "上级平台信息", dataTypeClass = ParentPlatform.class),
|
|
|
- })
|
|
|
@PostMapping("/save")
|
|
|
@ResponseBody
|
|
|
public ResponseEntity<String> savePlatform(@RequestBody ParentPlatform parentPlatform){
|
|
|
@@ -243,9 +240,6 @@ public class PlatformController {
|
|
|
* @return
|
|
|
*/
|
|
|
@ApiOperation("向上级平台添加国标通道")
|
|
|
- @ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "param", value = "通道关联参数", dataTypeClass = UpdateChannelParam.class),
|
|
|
- })
|
|
|
@PostMapping("/update_channel_for_gb")
|
|
|
@ResponseBody
|
|
|
public ResponseEntity<String> updateChannelForGB(@RequestBody UpdateChannelParam param){
|
|
|
@@ -264,9 +258,6 @@ public class PlatformController {
|
|
|
* @return
|
|
|
*/
|
|
|
@ApiOperation("从上级平台移除国标通道")
|
|
|
- @ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "param", value = "通道关联参数", dataTypeClass = UpdateChannelParam.class),
|
|
|
- })
|
|
|
@DeleteMapping("/del_channel_for_gb")
|
|
|
@ResponseBody
|
|
|
public ResponseEntity<String> delChannelForGB(@RequestBody UpdateChannelParam param){
|