remove unused shares column from customer
This commit is contained in:
parent
67a7817e77
commit
d211cbb336
@ -65,13 +65,6 @@ public class Customer 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;
|
||||
|
||||
@ -176,22 +169,6 @@ public class Customer implements Serializable {
|
||||
this.nonDiscContract = nonDiscContract;
|
||||
}
|
||||
|
||||
public Date getSharesUpdated() {
|
||||
return sharesUpdated;
|
||||
}
|
||||
|
||||
public void setSharesUpdated(final Date sharesUpdated) {
|
||||
this.sharesUpdated = sharesUpdated;
|
||||
}
|
||||
|
||||
public int getSharesSigned() {
|
||||
return sharesSigned;
|
||||
}
|
||||
|
||||
public void setSharesSigned(final int sharesSigned) {
|
||||
this.sharesSigned = sharesSigned;
|
||||
}
|
||||
|
||||
public String getUidVAT() {
|
||||
return uidVAT;
|
||||
}
|
||||
|
@ -49,12 +49,6 @@ public class CustomerVO extends AbstractVO {
|
||||
@ReadWrite(ReadWritePolicy.READWRITE)
|
||||
private Date nonDiscContract;
|
||||
|
||||
@ReadWrite(ReadWritePolicy.READWRITE)
|
||||
private Date sharesUpdated;
|
||||
|
||||
@ReadWrite(ReadWritePolicy.READWRITE)
|
||||
private Integer sharesSigned;
|
||||
|
||||
@ReadWrite(ReadWritePolicy.READWRITE)
|
||||
private Boolean free;
|
||||
|
||||
@ -141,22 +135,6 @@ public class CustomerVO extends AbstractVO {
|
||||
this.nonDiscContract = nonDiscContract;
|
||||
}
|
||||
|
||||
public Date getSharesUpdated() {
|
||||
return sharesUpdated;
|
||||
}
|
||||
|
||||
public void setSharesUpdated(Date sharesUpdated) {
|
||||
this.sharesUpdated = sharesUpdated;
|
||||
}
|
||||
|
||||
public Integer getSharesSigned() {
|
||||
return sharesSigned;
|
||||
}
|
||||
|
||||
public void setSharesSigned(Integer sharesSigned) {
|
||||
this.sharesSigned = sharesSigned;
|
||||
}
|
||||
|
||||
public Boolean getFree() {
|
||||
return free;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user