update 对接内蒙古平台

This commit is contained in:
2024-03-22 13:57:40 +08:00
parent a0e4272100
commit 27bc7eb67e
6 changed files with 342 additions and 6 deletions

View File

@@ -0,0 +1,47 @@
package com.jsowell.web.controller.thirdparty.neimenggu;
import com.jsowell.common.annotation.Anonymous;
import com.jsowell.thirdparty.lianlian.common.CommonResult;
import com.jsowell.thirdparty.lianlian.dto.CommonParamsDTO;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 内蒙古接口
*/
@Anonymous
@RestController
@RequestMapping("/evcs")
public class NMGController {
/**
* 获取token接口
* http://localhost:8080/evcs/v1/query_token
*/
@PostMapping("/v1/query_token")
public CommonResult<?> queryToken(@RequestBody CommonParamsDTO dto) {
return null;
}
/**
* 查询运营商信息
* 接口名称supervise_query_operator_info
* 使用方法:由数据提供方实现此接口,数据需求方调用
* 接口频率:每天一次或多次
* 超时时间120秒
*/
@PostMapping("/v1/supervise_query_operator_info")
public CommonResult<?> queryOperatorInfo(@RequestBody CommonParamsDTO dto) {
return null;
}
/**
* 查询充换电站信息
* 接口名称: supervise_query_stations_info
* 使用方法:由数据提供方实现此接口,数据需求方调用
* 接口频率:每天一次或多次
* 超时时间120秒
*/
}