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