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