|
|
@@ -5,6 +5,7 @@ import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
|
|
|
|
|
/**
|
|
|
@@ -74,6 +75,9 @@ public class DistributionSellerVo {
|
|
|
public void setNull(){
|
|
|
this.setGzhOpenId(null);
|
|
|
this.setPassword(null);
|
|
|
+ this.setCash(null);
|
|
|
+ this.setUsedCash(null);
|
|
|
+
|
|
|
}
|
|
|
@ApiModelProperty("邀请人姓名")
|
|
|
private String parentName;
|
|
|
@@ -86,5 +90,13 @@ public class DistributionSellerVo {
|
|
|
|
|
|
@ApiModelProperty("所属机构")
|
|
|
private String tenantName;
|
|
|
+ /** 可提现余额(不含冻结) */
|
|
|
+ @Excel(name = "可提现余额(不含冻结)")
|
|
|
+ @ApiModelProperty("可提现余额(不含冻结)")
|
|
|
+ private BigDecimal cash;
|
|
|
+ /** 已提现余额 */
|
|
|
+ @Excel(name = "已提现余额")
|
|
|
+ @ApiModelProperty("已提现余额")
|
|
|
+ private BigDecimal usedCash;
|
|
|
|
|
|
}
|