1234567891011121314151617 |
- package com.onemap.analyse.service;
- import org.springframework.web.bind.annotation.RequestParam;
- /**
- * 基于pgsql里的POST做的生成数据组件
- */
- public interface CreateUtilsDBService {
- /**
- * table中与wkt数据是否有交集
- *
- * @param tableName 表名称
- * @param radius 缓冲区半径
- * @return
- */
- String bufferTable(@RequestParam(value = "tableName") String tableName, float radius);
- }
|