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