Helius
2020-12-27 8eda088db63ff198cbcd51bf0599531ed006cb84
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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;
    }
}