mantis #7978 parte ADM + Flyway
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@62952 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
9c5f9e52f8
commit
a755e9ed32
|
@ -14,6 +14,7 @@ import javax.persistence.GeneratedValue;
|
|||
import javax.persistence.GenerationType;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.JoinColumn;
|
||||
import javax.persistence.ManyToOne;
|
||||
import javax.persistence.OneToMany;
|
||||
import javax.persistence.OneToOne;
|
||||
import javax.persistence.SequenceGenerator;
|
||||
|
@ -81,6 +82,15 @@ public class ConfRestricaoCanalVenta implements Serializable {
|
|||
private Boolean indexibeconsultavendaweb;
|
||||
@Column(name = "INDEXIBECORRIDABLOQ")
|
||||
private Boolean indexibecorridabloq;
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@JoinColumn(name = "EMPRESA_ID")
|
||||
private Empresa empresa;
|
||||
@Column(name = "FECINICIOVIGENCIA")
|
||||
@Temporal(TemporalType.TIMESTAMP)
|
||||
private Date feciniciovigencia;
|
||||
@Column(name = "FECFINVIGENCIA")
|
||||
@Temporal(TemporalType.TIMESTAMP)
|
||||
private Date fecfinvigencia;
|
||||
|
||||
public ConfRestricaoCanalVenta() {
|
||||
super();
|
||||
|
@ -297,6 +307,30 @@ public class ConfRestricaoCanalVenta implements Serializable {
|
|||
public void setLsConfRestricaoPtovta(List<ConfRestricaoPtovta> lsConfRestricaoPtovta) {
|
||||
this.lsConfRestricaoPtovta = lsConfRestricaoPtovta;
|
||||
}
|
||||
|
||||
public Empresa getEmpresa() {
|
||||
return empresa;
|
||||
}
|
||||
|
||||
public void setEmpresa(Empresa empresa) {
|
||||
this.empresa = empresa;
|
||||
}
|
||||
|
||||
public Date getFeciniciovigencia() {
|
||||
return feciniciovigencia;
|
||||
}
|
||||
|
||||
public void setFeciniciovigencia(Date feciniciovigencia) {
|
||||
this.feciniciovigencia = feciniciovigencia;
|
||||
}
|
||||
|
||||
public Date getFecfinvigencia() {
|
||||
return fecfinvigencia;
|
||||
}
|
||||
|
||||
public void setFecfinvigencia(Date fecfinvigencia) {
|
||||
this.fecfinvigencia = fecfinvigencia;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
|
|
Loading…
Reference in New Issue