Commit 28ccfae1 authored by Noel Alonso's avatar Noel Alonso
Browse files

Añade campo dashboard a modelo

parent cefd9122
Loading
Loading
Loading
Loading
+19 −9
Original line number Diff line number Diff line
@@ -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.
 * 
@@ -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;

@@ -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;
	}