AL-1808
parent
942dad3a6a
commit
bd0446cc81
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.0.13</version>
|
||||
<version>1.0.14</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -102,6 +102,9 @@ public class FormaPago implements Serializable, Auditavel<FormaPago> {
|
|||
@NaoAuditar
|
||||
private FormaPago formaPagoClone;
|
||||
|
||||
@Column(name = "INDETICKET")
|
||||
private Boolean indETicket;
|
||||
|
||||
public FormaPago() {
|
||||
super();
|
||||
}
|
||||
|
@ -325,6 +328,16 @@ public class FormaPago implements Serializable, Auditavel<FormaPago> {
|
|||
this.tipoEventoExtraId = tipoEventoExtraId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public Boolean getIndETicket() {
|
||||
return indETicket == null ? false : indETicket;
|
||||
}
|
||||
|
||||
public void setIndETicket(Boolean indETicket) {
|
||||
this.indETicket = indETicket;
|
||||
}
|
||||
|
||||
@Override
|
||||
public FormaPago getCloneObject() throws CloneNotSupportedException {
|
||||
return formaPagoClone;
|
||||
|
|
Loading…
Reference in New Issue