remove shares from business_partner table
This commit is contained in:
parent
0c294f19a7
commit
d8432b0550
@ -66,13 +66,6 @@ public class Customer extends AbstractEntity implements Serializable {
|
||||
@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;
|
||||
|
||||
@ -183,22 +176,6 @@ public class Customer extends AbstractEntity implements Serializable {
|
||||
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() {
|
||||
return uidVAT;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user