leonardo 2014-12-18 11:47:26 +00:00
parent cbaa7aa275
commit c6fd47dfe1
1 changed files with 10 additions and 1 deletions

View File

@ -44,6 +44,9 @@ public class OrgaoCancelacion {
private Date fecmodif;
@Column(name = "USUARIO_ID")
private Integer usuarioId;
@Column(name = "TIEMPOLIMITE")
private Integer tiempolimite;
public Integer getOrgaoCancelacionId() {
return orgaoCancelacionId;
}
@ -91,5 +94,11 @@ public class OrgaoCancelacion {
}
public void setUsuarioId(Integer usuarioId) {
this.usuarioId = usuarioId;
}
}
public Integer getTiempolimite() {
return tiempolimite;
}
public void setTiempolimite(Integer tiempolimite) {
this.tiempolimite = tiempolimite;
}
}