Alteração na classe FormaPago, acrécimo do campo cvePago
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@22093 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
649ace9410
commit
bcc0532787
|
@ -50,6 +50,8 @@ public class FormaPago implements Serializable {
|
|||
private List<ConfigRestriccionPago> configRestriccionPagoList;
|
||||
@Column(name = "EQUIVALENCIA_ID")
|
||||
private String equivalenciaId;
|
||||
@Column(name = "CVEPAGO")
|
||||
private String cvePago;
|
||||
|
||||
public FormaPago() {
|
||||
}
|
||||
|
@ -131,6 +133,16 @@ public class FormaPago implements Serializable {
|
|||
this.equivalenciaId = equivalenciaId;
|
||||
}
|
||||
|
||||
|
||||
public String getCvePago() {
|
||||
return cvePago;
|
||||
}
|
||||
|
||||
public void setCvePago(String cvePago) {
|
||||
this.cvePago = cvePago;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 0;
|
||||
|
|
Loading…
Reference in New Issue