frederico 2017-12-01 16:36:23 +00:00
parent bd82214b15
commit 01b6e86038
1 changed files with 10 additions and 0 deletions

View File

@ -86,6 +86,8 @@ public class Parada implements Serializable {
private Integer codantt;
@Column(name = "DESCPROCON")
private String descProcon;
@Column(name="INDVENDETOTEM")
private Boolean indVendeTotem;
@ManyToOne
@JoinColumn(name = "REGIONMETROPOLITANA_ID", referencedColumnName = "REGIONMETROPOLITANA_ID")
@ -302,4 +304,12 @@ public class Parada implements Serializable {
this.descProcon = descProcon;
}
public Boolean getIndVendeTotem() {
return indVendeTotem;
}
public void setIndVendeTotem(Boolean indVendeTotem) {
this.indVendeTotem = indVendeTotem;
}
}