5 changed files with 85 additions and 6 deletions
Split View
Diff Options
-
12dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/walletaccount/user/WalletAccountUserQueryController.java
-
41dating-agency-mall-server/src/main/java/com/qniao/dam/api/query/walletaccount/user/response/WalletAccountRecordExportVo.java
-
2dating-agency-mall-server/src/main/java/com/qniao/dam/query/walletaccount/WalletAccountQueryService.java
-
36dating-agency-mall-server/src/main/java/com/qniao/dam/query/walletaccount/impl/WalletAccountQueryServiceImpl.java
-
BINdating-agency-mall-server/src/main/resources/templates/walletAccountRecordExport.xlsx
@ -0,0 +1,41 @@ |
|||
package com.qniao.dam.api.query.walletaccount.user.response; |
|||
|
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
import java.time.LocalDateTime; |
|||
|
|||
@Data |
|||
public class WalletAccountRecordExportVo { |
|||
|
|||
@ApiModelProperty("流水明细ID") |
|||
private Long associateId; |
|||
|
|||
@ApiModelProperty("交易类型") |
|||
private String tradeTypeVal; |
|||
|
|||
@ApiModelProperty("是否收入") |
|||
private String isIncome; |
|||
|
|||
@ApiModelProperty("创建时间") |
|||
private LocalDateTime createTime; |
|||
|
|||
@ApiModelProperty("名称") |
|||
private String name; |
|||
|
|||
@ApiModelProperty("手机号") |
|||
private String phone; |
|||
|
|||
@ApiModelProperty("红娘等级") |
|||
private String matchmakerLevelVal; |
|||
|
|||
@ApiModelProperty("交易金额") |
|||
private BigDecimal tradeAmount; |
|||
|
|||
@ApiModelProperty("原始金额") |
|||
private BigDecimal originalBalance; |
|||
|
|||
@ApiModelProperty("当前金额") |
|||
private BigDecimal currentBalance; |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save