fixes bug#23129
qua: dev:Valdir git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@109354 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
3bf80d6e0f
commit
796e652b91
|
@ -226,6 +226,10 @@ public class CategoriaDescuento implements Serializable {
|
||||||
@Column(name = "INDTROCATITULARIDADEEMABERTO")
|
@Column(name = "INDTROCATITULARIDADEEMABERTO")
|
||||||
private Boolean indTrocaTitularidadeEmAberto;
|
private Boolean indTrocaTitularidadeEmAberto;
|
||||||
|
|
||||||
|
@JoinColumn(name = "CATEGORIAINTERAGE_ID", referencedColumnName = "CATEGORIA_ID")
|
||||||
|
@ManyToOne(cascade = CascadeType.ALL)
|
||||||
|
private Categoria categoriaInterage;
|
||||||
|
|
||||||
public enum DisponibilidadeFeriado {
|
public enum DisponibilidadeFeriado {
|
||||||
// Declaração dos enum
|
// Declaração dos enum
|
||||||
GERARSEMPRE("SEMPRE", "S"),
|
GERARSEMPRE("SEMPRE", "S"),
|
||||||
|
@ -957,5 +961,12 @@ public class CategoriaDescuento implements Serializable {
|
||||||
this.indPermiteTransferencia = indPermiteTransferencia;
|
this.indPermiteTransferencia = indPermiteTransferencia;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Categoria getCategoriaInterage() {
|
||||||
|
return categoriaInterage;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCategoriaInterage(Categoria categoriaInterage) {
|
||||||
|
this.categoriaInterage = categoriaInterage;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue