Authored by tanling

no message

... ... @@ -182,6 +182,29 @@ public class OrderInfo implements Serializable {
public void setThirdUid(String thirdUid) {
this.thirdUid = thirdUid;
}
@Override
public String toString() {
return "OrderInfo{" +
"orderTime=" + orderTime +
", parentOrderCode='" + parentOrderCode + '\'' +
", orderCode='" + orderCode + '\'' +
", uid=" + uid +
", clientId='" + clientId + '\'' +
", unionCookie='" + unionCookie + '\'' +
", orderAmount=" + orderAmount +
", shippingCost=" + shippingCost +
", payment='" + payment + '\'' +
", orderStatus='" + orderStatus + '\'' +
", orderType='" + orderType + '\'' +
", isNew='" + isNew + '\'' +
", unionData='" + unionData + '\'' +
", trackingCode='" + trackingCode + '\'' +
", thirdUid='" + thirdUid + '\'' +
", mbrName='" + mbrName + '\'' +
", ordersGoods=" + ordersGoods +
'}';
}
}
... ...
... ... @@ -92,7 +92,7 @@ public class RedirectServiceImpl implements IRedirectService {
if (StringUtils.isNotBlank(union_data)){
Cookie cookie = new Cookie("union_data", union_data);
cookie.setDomain(".yohobuy.com");
cookie.setDomain("yohobuy.com");
cookie.setPath("/");
response.addCookie(cookie);
}
... ...