suerprisePlus
2024-09-09 623cee8be4846e5762ff2949e519335ef8dee2bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yb.postgis;
 
import org.locationtech.jts.geom.Point;
import org.apache.ibatis.type.MappedTypes;
 
 
 
/**
 * Point的类型转换器
 *
 * @author wangrubin1
 * @date 2022-08-19
 */
@MappedTypes({Point.class})
public class PointTypeHandler extends AbstractGeometryTypeHandler<Point> {
}