Loading src/main/java/es/redmic/db/geodata/properties/fixedsurvey/model/FixedSurvey.java +19 −9 Original line number Diff line number Diff line Loading @@ -15,7 +15,6 @@ import com.vividsolutions.jts.geom.Geometry; import es.redmic.db.geodata.common.model.GeoDataModel; /** * The persistent class for the surveystation database table. * Loading @@ -38,6 +37,9 @@ public class FixedSurvey extends GeoDataModel implements Serializable { @Column(length = 2, nullable = false) private String prefixtype; @Column(length = 500) private String dashboard; @Column(name = "shape", nullable = false) Geometry geometry; Loading Loading @@ -80,6 +82,14 @@ public class FixedSurvey extends GeoDataModel implements Serializable { this.prefixtype = prefixtype; } public String getDashboard() { return dashboard; } public void setDashboard(String dashboard) { this.dashboard = dashboard; } public Geometry getGeometry() { return geometry; } Loading Loading
src/main/java/es/redmic/db/geodata/properties/fixedsurvey/model/FixedSurvey.java +19 −9 Original line number Diff line number Diff line Loading @@ -15,7 +15,6 @@ import com.vividsolutions.jts.geom.Geometry; import es.redmic.db.geodata.common.model.GeoDataModel; /** * The persistent class for the surveystation database table. * Loading @@ -38,6 +37,9 @@ public class FixedSurvey extends GeoDataModel implements Serializable { @Column(length = 2, nullable = false) private String prefixtype; @Column(length = 500) private String dashboard; @Column(name = "shape", nullable = false) Geometry geometry; Loading Loading @@ -80,6 +82,14 @@ public class FixedSurvey extends GeoDataModel implements Serializable { this.prefixtype = prefixtype; } public String getDashboard() { return dashboard; } public void setDashboard(String dashboard) { this.dashboard = dashboard; } public Geometry getGeometry() { return geometry; } Loading