package com.java110.po.storeOrderCartReturn;
|
|
import java.io.Serializable;
|
|
public class StoreOrderCartReturnPo implements Serializable {
|
|
private String orderId;
|
private String returnReason;
|
private String returnPayPrice;
|
private String cartId;
|
private String returnId;
|
private String personId;
|
private String statusCd = "0";
|
private String state;
|
private String storeId;
|
|
public String getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(String orderId) {
|
this.orderId = orderId;
|
}
|
|
public String getReturnReason() {
|
return returnReason;
|
}
|
|
public void setReturnReason(String returnReason) {
|
this.returnReason = returnReason;
|
}
|
|
public String getReturnPayPrice() {
|
return returnPayPrice;
|
}
|
|
public void setReturnPayPrice(String returnPayPrice) {
|
this.returnPayPrice = returnPayPrice;
|
}
|
|
public String getCartId() {
|
return cartId;
|
}
|
|
public void setCartId(String cartId) {
|
this.cartId = cartId;
|
}
|
|
public String getReturnId() {
|
return returnId;
|
}
|
|
public void setReturnId(String returnId) {
|
this.returnId = returnId;
|
}
|
|
public String getPersonId() {
|
return personId;
|
}
|
|
public void setPersonId(String personId) {
|
this.personId = personId;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getStoreId() {
|
return storeId;
|
}
|
|
public void setStoreId(String storeId) {
|
this.storeId = storeId;
|
}
|
}
|