wilian 2017-09-22 00:29:43 +00:00
parent 5670ec0fa3
commit 3fde76ed54
1 changed files with 10 additions and 0 deletions

View File

@ -45,6 +45,8 @@ public class MotivoCancelacion implements Serializable {
private String tipomotivo; private String tipomotivo;
@Column(name = "TXTRELATORIO") @Column(name = "TXTRELATORIO")
private String txtRelatorio; private String txtRelatorio;
@Column(name="CVESISTEMA")
private String cveSistema;
public MotivoCancelacion() { public MotivoCancelacion() {
} }
@ -133,4 +135,12 @@ public class MotivoCancelacion implements Serializable {
public String toString() { public String toString() {
return this.getDescmotivo(); return this.getDescmotivo();
} }
public String getCveSistema() {
return cveSistema;
}
public void setCveSistema(String cveSistema) {
this.cveSistema = cveSistema;
}
} }