admin
2020-05-19 744594ef1a2f530fc3e86ea9dc48b62247f79420
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
package com.yeshi.fanli.vo.order;
 
public class OrderCountVO {
    // 总计
    private long total;
    private long self;
    private long shared;
    private long invite;
    
    public long getTotal() {
        return total;
    }
    public void setTotal(long total) {
        this.total = total;
    }
    public long getSelf() {
        return self;
    }
    public void setSelf(long self) {
        this.self = self;
    }
    public long getShared() {
        return shared;
    }
    public void setShared(long shared) {
        this.shared = shared;
    }
    public long getInvite() {
        return invite;
    }
    public void setInvite(long invite) {
        this.invite = invite;
    } 
}