commit
8897d63ed8
1
pom.xml
1
pom.xml
|
@ -4,6 +4,7 @@
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ModelWeb</artifactId>
|
<artifactId>ModelWeb</artifactId>
|
||||||
<version>1.12.1</version>
|
<version>1.12.1</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>rj-releases</id>
|
<id>rj-releases</id>
|
||||||
|
|
|
@ -167,6 +167,9 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
|
||||||
@Column(name = "INDNAOPERMITEVENDADUASGRAT")
|
@Column(name = "INDNAOPERMITEVENDADUASGRAT")
|
||||||
private Boolean indNaoPermiteVendaDuasGrat;
|
private Boolean indNaoPermiteVendaDuasGrat;
|
||||||
|
|
||||||
|
@Column(name = "CANTMAXVENDASMES")
|
||||||
|
private Integer cantMaxVendaMes;
|
||||||
|
|
||||||
@Column(name = "INDNAOAPLICATARIFAMINIMA")
|
@Column(name = "INDNAOAPLICATARIFAMINIMA")
|
||||||
private Boolean indnaoaplicatarifaminima;
|
private Boolean indnaoaplicatarifaminima;
|
||||||
|
|
||||||
|
@ -1010,6 +1013,14 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public Integer getCantMaxVendaMes() {
|
||||||
|
return cantMaxVendaMes;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCantMaxVendaMes(Integer cantMaxVendaMes) {
|
||||||
|
this.cantMaxVendaMes = cantMaxVendaMes;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void clonar() throws CloneNotSupportedException {
|
public void clonar() throws CloneNotSupportedException {
|
||||||
categoriaDescuentoClone = new CategoriaDescuento();
|
categoriaDescuentoClone = new CategoriaDescuento();
|
||||||
|
|
Loading…
Reference in New Issue