| package com.matrix.system.hive.pojo; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * 退款订单数据传输对象 | 
|  */ | 
| public class RefundOrderVo { | 
|   | 
|     String remark; | 
|     Long vipId; | 
|   | 
|     List<RefundOrderItemVo> items; | 
|   | 
|     public String getRemark() { | 
|         return remark; | 
|     } | 
|   | 
|     public void setRemark(String remark) { | 
|         this.remark = remark; | 
|     } | 
|   | 
|     public List<RefundOrderItemVo> getItems() { | 
|         return items; | 
|     } | 
|   | 
|     public void setItems(List<RefundOrderItemVo> items) { | 
|         this.items = items; | 
|     } | 
|   | 
|     public Long getVipId() { | 
|         return vipId; | 
|     } | 
|   | 
|     public void setVipId(Long vipId) { | 
|         this.vipId = vipId; | 
|     } | 
| } |