11
13693261870
2024-11-11 138b959cc11dc9a73b0c766030b99ba1180d8650
src/main/java/com/se/simu/domain/po/DataPo.java
@@ -2,16 +2,13 @@
import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.se.simu.helper.GdalHelper;
import io.swagger.annotations.ApiModelProperty;
import org.gdal.osr.SpatialReference;
import java.util.Date;
/**
 * 仿真数据实体类
 *
 * @author WWW
 * @date 2024-09-18
 */
@SuppressWarnings("ALL")
public class DataPo {
    @ApiModelProperty("父ID")
    private Integer pid;
@@ -270,4 +267,8 @@
    public void setEpsg(Integer epsg) {
        this.epsg = epsg;
    }
    public SpatialReference getSpatialReference() {
        return GdalHelper.createSpatialReference(this.getEpsg());
    }
}