Helius
2021-03-17 9974b1fffff1cad712b7c30fb4c708ef45ec4b8c
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
39
40
41
42
43
44
45
package com.matrix.system.shopXcx.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "SalesmanCenterInfo", description = " 销售员中心返回参数")
public class SalesmanCenterInfo {
 
    @ApiModelProperty(value = "累计收益")
    private String totalRevenue;
 
 
    @ApiModelProperty(value = "分销佣金")
    private String salesRevenue;
 
    @ApiModelProperty(value = "邀请奖励")
    private String invitationRevenue;
 
 
 
    @ApiModelProperty(value = "待结算收益")
    private String djsRevenue;
 
 
    @ApiModelProperty(value = "可提现金额")
    private String  withdrawalCash;
 
 
    @ApiModelProperty(value = "邀请订单数")
    private String  invitationOrderCount;
 
    @ApiModelProperty(value = "推广订单数")
    private String  salesorderCount;
 
 
    @ApiModelProperty(value = "客户数")
    private Double   customerCount;
 
    @ApiModelProperty(value = "邀请下级数")
    private Double   invitationCount;
 
 
}