|
|
|
@ -1,5 +1,7 @@ |
|
|
|
package com.qniao.dam.api.query.revenuereward.user.response; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
@ -9,14 +11,15 @@ import java.math.BigDecimal; |
|
|
|
public class UserListMatchmakerRevenueRewardStatisticsVo { |
|
|
|
|
|
|
|
@ApiModelProperty("红娘标识") |
|
|
|
@JsonSerialize(using = ToStringSerializer.class) |
|
|
|
private Long matchmakerId; |
|
|
|
|
|
|
|
@ApiModelProperty("红娘名称") |
|
|
|
private String matchmakerName; |
|
|
|
|
|
|
|
@ApiModelProperty("营收额元") |
|
|
|
private BigDecimal revenue; |
|
|
|
private BigDecimal revenue = BigDecimal.ZERO; |
|
|
|
|
|
|
|
@ApiModelProperty("邀请红娘数量") |
|
|
|
private Integer inviteMatchmakerNum; |
|
|
|
private Integer inviteMatchmakerNum = 0; |
|
|
|
} |