leonardo 2017-02-01 13:33:50 +00:00
parent 6290107485
commit d1a96a24fa
1 changed files with 10 additions and 0 deletions

View File

@ -29,6 +29,7 @@ public class FechamentoParamptovta implements Serializable {
private Integer usuarioId;
private Boolean activo;
private Integer diasemtransito;
private String tipopagamento;
public FechamentoParamptovta() {
}
@ -135,6 +136,15 @@ public class FechamentoParamptovta implements Serializable {
builder.append("FechamentoParamptovta [fechamentoparamptovtaId=").append(fechamentoparamptovtaId).append(", puntoventa=").append(puntoventa).append(", empresa=").append(empresa).append(", intervalofechamento=").append(intervalofechamento).append(", fecmodif=").append(fecmodif).append(", usuarioId=").append(usuarioId).append(", activo=").append(activo).append(", diasemtransito=").append(diasemtransito).append("]");
return builder.toString();
}
@Column(name = "TIPOPAGAMENTO", length = 1)
public String getTipopagamento() {
return tipopagamento;
}
public void setTipopagamento(String tipopagamento) {
this.tipopagamento = tipopagamento;
}