update 新增数据补全,删除接口
This commit is contained in:
parent
6bd204dc4b
commit
7161e6fe57
|
@ -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;
|
||||
}
|
Loading…
Reference in New Issue