mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
19 lines
368 B
Java
19 lines
368 B
Java
package com.jsowell.api.thirdparty;
|
|
|
|
import com.jsowell.common.annotation.Anonymous;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
* 地图相关接口
|
|
*/
|
|
@Anonymous
|
|
@RestController
|
|
@RequestMapping("/map")
|
|
public class MapController {
|
|
|
|
// 根据经纬度查询地址信息
|
|
|
|
|
|
}
|