| | |
| | | @Temporal(javax.persistence.TemporalType.DATE) |
| | | private Date nonDiscContract; |
| | | |
| | | @Column(name = "shares_updated", columnDefinition = "date", nullable = true) |
| | | @Temporal(javax.persistence.TemporalType.DATE) |
| | | private Date sharesUpdated; |
| | | |
| | | @Column(name = "shares_signed", columnDefinition = "integer") |
| | | private int sharesSigned; |
| | | |
| | | @Column(name = "free", nullable = false) |
| | | private boolean free = false; |
| | | |
| | |
| | | |
| | | public void setNonDiscContract(Date nonDiscContract) { |
| | | this.nonDiscContract = nonDiscContract; |
| | | } |
| | | |
| | | public Date getSharesUpdated() { |
| | | return sharesUpdated; |
| | | } |
| | | |
| | | public void setSharesUpdated(Date sharesUpdated) { |
| | | this.sharesUpdated = sharesUpdated; |
| | | } |
| | | |
| | | public int getSharesSigned() { |
| | | return sharesSigned; |
| | | } |
| | | |
| | | public void setSharesSigned(int sharesSigned) { |
| | | this.sharesSigned = sharesSigned; |
| | | } |
| | | |
| | | public String getUidVAT() { |