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;
|
}
|
}
|