AL2803
master
valdir.cordeiro 2023-08-29 09:27:56 -03:00
commit 8897d63ed8
2 changed files with 12 additions and 0 deletions

View File

@ -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>

View File

@ -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();