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