From 7161e6fe5742e4a68e9c9c8c43f191751588b923 Mon Sep 17 00:00:00 2001 From: yyb <1416014977@qq.com> Date: Fri, 12 Sep 2025 16:27:20 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E6=96=B0=E5=A2=9E=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E8=A1=A5=E5=85=A8=EF=BC=8C=E5=88=A0=E9=99=A4=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dto/SummaryOfPendingPaymentsDto.java | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 m2pool-modules/m2pool-manage/src/main/java/com/m2pool/manage/dto/SummaryOfPendingPaymentsDto.java diff --git a/m2pool-modules/m2pool-manage/src/main/java/com/m2pool/manage/dto/SummaryOfPendingPaymentsDto.java b/m2pool-modules/m2pool-manage/src/main/java/com/m2pool/manage/dto/SummaryOfPendingPaymentsDto.java new file mode 100644 index 0000000..fd543fa --- /dev/null +++ b/m2pool-modules/m2pool-manage/src/main/java/com/m2pool/manage/dto/SummaryOfPendingPaymentsDto.java @@ -0,0 +1,44 @@ +package com.m2pool.manage.dto; + +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.math.BigDecimal; +import java.time.LocalDateTime; + +/** + * @Description 查询用户详情信息放回对象 + * @Date 2025/5/22 17:18 + * @Author yyb + */ +@Builder +@Data +@NoArgsConstructor +@AllArgsConstructor +@ApiModel(value = "SummaryOfPendingPaymentsDto", description = "待支付汇总返回对象") +public class SummaryOfPendingPaymentsDto { + + + @ApiModelProperty(value = "挖矿账号",example = "a20") + private String user; + + @ApiModelProperty(value = "币种",example = "nexa") + private String coin; + + + @ApiModelProperty(value = "最后分配时间",example = "2025-06-16 00:00:00") + private LocalDateTime shouldOutDate; + + @ApiModelProperty(value = "最后分配高度",example = "273920") + private Integer maxHeight; + + @ApiModelProperty(value = "起付额",example = " 273920.9666238700") + private BigDecimal startPayAmount; + + @ApiModelProperty(value = "待支付总金额",example = " 273920.9666238700") + private BigDecimal needPayAmount; +}