Commit cf45efc6 by 徐高华

积分商城

parent 9c990f0f
......@@ -58,6 +58,10 @@ public class OrderDetailVO implements Serializable {
* 实付金额 不含运费
*/
private Double payAmount;
// 使用积分
private Integer usePoint ;
/**
* 最终实际运费(可手动修改)
......@@ -135,6 +139,14 @@ public class OrderDetailVO implements Serializable {
// 物流包裹列表
private List<String> orderLogisticsIdList ;
public Integer getUsePoint() {
return usePoint;
}
public void setUsePoint(Integer usePoint) {
this.usePoint = usePoint;
}
public Integer getBusinessType() {
return businessType;
......
......@@ -85,6 +85,17 @@ public class OrderListItemVO implements Serializable {
4、换货成功 */
private int afterSalesStatus ;
// 商品错误信息
private String errorMsg ;
public String getErrorMsg() {
return errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getMallProSkuId() {
return mallProSkuId;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment