This commit is contained in:
Leo
2025-03-02 14:39:31 +08:00
parent 41fae55b3f
commit d8e97e7e2b
3 changed files with 174 additions and 110 deletions

View File

@@ -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。