5 changed files with 120 additions and 0 deletions
Split View
Diff Options
-
8dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/revenuereward/user/RevenueRewardUserQueryController.java
-
64dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/revenuereward/user/response/RevenueRewardRecordExportVo.java
-
2dating-agency-mall-server/src/main/java/com/qniao/dam/query/revenuereward/RevenueRewardQueryService.java
-
46dating-agency-mall-server/src/main/java/com/qniao/dam/query/revenuereward/impl/RevenueRewardQueryServiceImpl.java
-
BINdating-agency-mall-server/src/main/resources/templates/revenueRewardRecordExport.xlsx
@ -0,0 +1,64 @@ |
|||
package com.qniao.dam.api.query.revenuereward.user.response; |
|||
|
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
import java.time.LocalDateTime; |
|||
|
|||
@Data |
|||
public class RevenueRewardRecordExportVo { |
|||
|
|||
@ApiModelProperty("收益记录标识") |
|||
private Long revenueRewardRecordId; |
|||
|
|||
@ApiModelProperty("创建时间") |
|||
private LocalDateTime createTime; |
|||
|
|||
@ApiModelProperty("收益者名称") |
|||
private String revenueOwnerName; |
|||
|
|||
@ApiModelProperty("收益者手机") |
|||
private String revenueOwnerPhone; |
|||
|
|||
@ApiModelProperty("红娘用户ID") |
|||
private Long matchmakerUserId; |
|||
|
|||
@ApiModelProperty("红娘等级") |
|||
private String matchmakerLevelVal; |
|||
|
|||
@ApiModelProperty("交易类型") |
|||
private String tradeTypeVal; |
|||
|
|||
@ApiModelProperty("订单金额") |
|||
private BigDecimal totalAssociateOrderAmount; |
|||
|
|||
@ApiModelProperty("营收额百分比 收入占比") |
|||
private BigDecimal revenuePct; |
|||
|
|||
@ApiModelProperty("营收额 营收金额") |
|||
private BigDecimal revenue; |
|||
|
|||
@ApiModelProperty("服务费百分比 抽佣占比") |
|||
private BigDecimal servicePct; |
|||
|
|||
@ApiModelProperty("收益额 实收金额") |
|||
private BigDecimal earnings; |
|||
|
|||
|
|||
|
|||
@ApiModelProperty("订单号") |
|||
private String orderCode; |
|||
|
|||
@ApiModelProperty("订单时间") |
|||
private String orderTimeVal; |
|||
|
|||
@ApiModelProperty("微信支付单号") |
|||
private String wechatOrderNo; |
|||
|
|||
@ApiModelProperty("服务用户名称") |
|||
private String serviceUserName; |
|||
|
|||
@ApiModelProperty("服务用户手机") |
|||
private String serviceUserPhone; |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save