|  | @@ -71,6 +71,12 @@ public class OrderReq {
 | 
	
		
			
				|  |  |          private GoodTypeEnum goodType;
 | 
	
		
			
				|  |  |          @ApiModelProperty("商品名称 ")
 | 
	
		
			
				|  |  |          private String goodName;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        @ApiModelProperty(value = "下单客户端 ",hidden = true)
 | 
	
		
			
				|  |  | +        private ClientEnum orderClient;
 | 
	
		
			
				|  |  | +        @ApiModelProperty(value = "vip剩余天数")
 | 
	
		
			
				|  |  | +        private Integer vipEndDays;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          @ApiModelProperty(value = "优惠券id")
 | 
	
		
			
				|  |  |          private Long couponId;
 | 
	
		
			
				|  |  |          @ApiModelProperty(value = "业务内容")
 | 
	
	
		
			
				|  | @@ -85,6 +91,22 @@ public class OrderReq {
 | 
	
		
			
				|  |  |          // 透传订单类型
 | 
	
		
			
				|  |  |          private OrderTypeEnum orderType;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +        public ClientEnum getOrderClient() {
 | 
	
		
			
				|  |  | +            return orderClient;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public void setOrderClient(ClientEnum orderClient) {
 | 
	
		
			
				|  |  | +            this.orderClient = orderClient;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public Integer getVipEndDays() {
 | 
	
		
			
				|  |  | +            return vipEndDays;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public void setVipEndDays(Integer vipEndDays) {
 | 
	
		
			
				|  |  | +            this.vipEndDays = vipEndDays;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          public BigDecimal getActualPrice() {
 | 
	
		
			
				|  |  |              return actualPrice;
 | 
	
		
			
				|  |  |          }
 |