1
This commit is contained in:
@@ -74,8 +74,54 @@ public class ProductOrder {
|
||||
@Temporal(TemporalType.TIMESTAMP)
|
||||
@Column(name = "cashback_time")
|
||||
private Date cashbackTime;
|
||||
//收货信息
|
||||
@Column(name = "recipient_name")
|
||||
private String recipientName;
|
||||
@Column(name = "recipient_phone")
|
||||
private String recipientPhone;
|
||||
@Column(name = "recipient_address")
|
||||
private String recipientAddress;
|
||||
|
||||
// Getters and Setters
|
||||
public Boolean getReviewed() {
|
||||
return isReviewed;
|
||||
}
|
||||
|
||||
public void setReviewed(Boolean reviewed) {
|
||||
isReviewed = reviewed;
|
||||
}
|
||||
|
||||
public Boolean getCashbackReceived() {
|
||||
return isCashbackReceived;
|
||||
}
|
||||
|
||||
public void setCashbackReceived(Boolean cashbackReceived) {
|
||||
isCashbackReceived = cashbackReceived;
|
||||
}
|
||||
|
||||
public String getRecipientName() {
|
||||
return recipientName;
|
||||
}
|
||||
|
||||
public void setRecipientName(String recipientName) {
|
||||
this.recipientName = recipientName;
|
||||
}
|
||||
|
||||
public String getRecipientPhone() {
|
||||
return recipientPhone;
|
||||
}
|
||||
|
||||
public void setRecipientPhone(String recipientPhone) {
|
||||
this.recipientPhone = recipientPhone;
|
||||
}
|
||||
|
||||
public String getRecipientAddress() {
|
||||
return recipientAddress;
|
||||
}
|
||||
|
||||
public void setRecipientAddress(String recipientAddress) {
|
||||
this.recipientAddress = recipientAddress;
|
||||
}
|
||||
// Getters and Setters
|
||||
|
||||
/**
|
||||
* 获取主键ID。
|
||||
|
||||
Reference in New Issue
Block a user