xiaoyong931011
2023-08-11 75cd0d8aff31f28596a5b52c2686bc2afee46589
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cc.mrbird.febs.dapp.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "MineToCoinDto", description = "资产转到兑换钱包入参")
public class MineToCoinDto {
    @ApiModelProperty(value = "资产钱包提币数量", example = "1")
    private BigDecimal aCoinCnt;
 
}