|
@@ -12,13 +12,16 @@ public class CalculateOrderDiscountPriceVo {
|
|
|
|
|
|
private String storeId;
|
|
private String storeId;
|
|
|
|
|
|
|
|
+ private String memberCode;
|
|
|
|
+
|
|
private List<GoodsDetailsDto> goodsList;
|
|
private List<GoodsDetailsDto> goodsList;
|
|
|
|
|
|
public CalculateOrderDiscountPriceVo() {
|
|
public CalculateOrderDiscountPriceVo() {
|
|
}
|
|
}
|
|
|
|
|
|
- public CalculateOrderDiscountPriceVo(String storeId, List<GoodsDetailsDto> goodsList) {
|
|
|
|
|
|
+ public CalculateOrderDiscountPriceVo(String storeId, String memberCode, List<GoodsDetailsDto> goodsList) {
|
|
this.storeId = storeId;
|
|
this.storeId = storeId;
|
|
|
|
+ this.memberCode = memberCode;
|
|
this.goodsList = goodsList;
|
|
this.goodsList = goodsList;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -30,6 +33,14 @@ public class CalculateOrderDiscountPriceVo {
|
|
this.storeId = storeId;
|
|
this.storeId = storeId;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getMemberCode() {
|
|
|
|
+ return memberCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setMemberCode(String memberCode) {
|
|
|
|
+ this.memberCode = memberCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
public List<GoodsDetailsDto> getGoodsList() {
|
|
public List<GoodsDetailsDto> getGoodsList() {
|
|
return goodsList;
|
|
return goodsList;
|
|
}
|
|
}
|