bug#13110
dev:Valdevir qua:Renato git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@88626 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
8697a99a59
commit
4695ba8b2e
|
@ -53,11 +53,13 @@ public class FormaPagoDet implements Serializable {
|
|||
@JoinColumn(name = "EMPRESA_ID", referencedColumnName = "EMPRESA_ID")
|
||||
@ManyToOne
|
||||
private Empresa empresa;
|
||||
|
||||
|
||||
@OneToOne
|
||||
@JoinColumn(name = "FORMAPAGO_ID")
|
||||
private FormaPago formaPago;
|
||||
@Column(name = "INDTOTALBUS")
|
||||
private Boolean indTotalBus;
|
||||
@Column(name = "INDEMBARCADA")
|
||||
private Boolean indEmbarcada;
|
||||
|
||||
public FormaPagoDet() {
|
||||
}
|
||||
|
@ -161,4 +163,21 @@ public class FormaPagoDet implements Serializable {
|
|||
public void setEmpresa(Empresa empresa) {
|
||||
this.empresa = empresa;
|
||||
}
|
||||
|
||||
public Boolean getIndTotalBus() {
|
||||
return indTotalBus;
|
||||
}
|
||||
|
||||
public void setIndTotalBus(Boolean indTotalBus) {
|
||||
this.indTotalBus = indTotalBus;
|
||||
}
|
||||
|
||||
public Boolean getIndEmbarcada() {
|
||||
return indEmbarcada;
|
||||
}
|
||||
|
||||
public void setIndEmbarcada(Boolean indEmbarcada) {
|
||||
this.indEmbarcada = indEmbarcada;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue