mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
update 对接内蒙古平台
This commit is contained in:
47
jsowell-admin/src/main/java/com/jsowell/web/controller/thirdparty/neimenggu/NMGController.java
vendored
Normal file
47
jsowell-admin/src/main/java/com/jsowell/web/controller/thirdparty/neimenggu/NMGController.java
vendored
Normal 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秒
|
||||
*/
|
||||
}
|
||||
Reference in New Issue
Block a user