jyy
2021-03-12 6c1d9c531eb74d548f373e78d91498e7bc633332
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
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 djsRevenue;
 
 
    @ApiModelProperty(value = "可提现金额")
    private String  withdrawalCash;
 
    @ApiModelProperty(value = "推广订单数")
    private String  orderCount;
 
 
    @ApiModelProperty(value = "客户数")
    private Double   customerCount;
 
    @ApiModelProperty(value = "邀请下级数")
    private Double   invitationCount;
 
 
}