wilian 2017-05-04 18:50:26 +00:00
parent 47edf73360
commit 33232aecc6
1 changed files with 10 additions and 0 deletions

View File

@ -48,6 +48,7 @@ public class OCDParam implements java.io.Serializable {
private Boolean indPenalizacionOCD; private Boolean indPenalizacionOCD;
private Boolean indOcdDinheiro; private Boolean indOcdDinheiro;
private Boolean indtotalbilhete; private Boolean indtotalbilhete;
private Boolean indsempregerarapagar;
private BigDecimal tiempoLimitePenalizacion; private BigDecimal tiempoLimitePenalizacion;
private List<OCDPtoVtaParam> listOCDPtoVtaParam; private List<OCDPtoVtaParam> listOCDPtoVtaParam;
@ -255,4 +256,13 @@ public class OCDParam implements java.io.Serializable {
this.listOCDPtoVtaParam = listOCDPtoVtaParam; this.listOCDPtoVtaParam = listOCDPtoVtaParam;
} }
@Column(name = "INDSEMPREGERARAPAGAR")
public Boolean getIndsempregerarapagar() {
return indsempregerarapagar;
}
public void setIndsempregerarapagar(Boolean indsempregerarapagar) {
this.indsempregerarapagar = indsempregerarapagar;
}
} }