|
@@ -16,6 +16,17 @@ public interface CreateUtilsDBMapper {
|
|
|
@Param("radius") float radius,
|
|
|
@Param("newTableName") String newTableName);
|
|
|
|
|
|
+ /**
|
|
|
+ * 计算tableName 空间数据的缓冲区,根据字段列生成,并存储成新的表
|
|
|
+ *
|
|
|
+ * @param tableName
|
|
|
+ * @param column
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ void bufferColumnTable(@Param("tableName") String tableName,
|
|
|
+ @Param("column") String column,
|
|
|
+ @Param("newTableName") String newTableName);
|
|
|
+
|
|
|
/**
|
|
|
* 生成表tableNameB空间数据的差集,B-ST_Intersection(A,B)
|
|
|
*
|
|
@@ -29,7 +40,7 @@ public interface CreateUtilsDBMapper {
|
|
|
@Param("tableIdsA") List<Integer> tableIdsA,
|
|
|
@Param("tableNameB") String tableNameB,
|
|
|
@Param("newTableName") String newTableName,
|
|
|
- @Param("temporaryTable")String temporaryTable);
|
|
|
+ @Param("temporaryTable") String temporaryTable);
|
|
|
|
|
|
/**
|
|
|
* 计算tableName 空间数据的缓冲区,并存储成新的表
|
|
@@ -39,7 +50,7 @@ public interface CreateUtilsDBMapper {
|
|
|
* @return
|
|
|
*/
|
|
|
void intersectionTableWkt(@Param("tableName") String tableName,
|
|
|
- @Param("tableIds") List<Integer> tableIds,
|
|
|
- @Param("ewkt") String ewkt,
|
|
|
- @Param("newTableName") String newTableName);
|
|
|
+ @Param("tableIds") List<Integer> tableIds,
|
|
|
+ @Param("ewkt") String ewkt,
|
|
|
+ @Param("newTableName") String newTableName);
|
|
|
}
|