| | |
| | | import java.math.BigDecimal;
|
| | | import java.util.List;
|
| | |
|
| | | import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity;
|
| | |
|
| | | import io.swagger.annotations.ApiModel;
|
| | | import io.swagger.annotations.ApiModelProperty;
|
| | | import lombok.Data;
|
| | |
|
| | | /**
|
| | | * @author xy
|
| | | */
|
| | | @ApiModel(value = "币币账户信息返回", description = "币币账户信息返回")
|
| | | @Data
|
| | | @ApiModel(value = "MemberWalletCoinVo", description = "币币账户信息返回")
|
| | | public class MemberWalletCoinVo {
|
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | |
| | | private BigDecimal totalCny;
|
| | |
|
| | | @ApiModelProperty(value = "币种详情")
|
| | | private List<MemberWalletCoinEntity> walletCoinEntities;
|
| | | |
| | | public BigDecimal getTotalUsdt() {
|
| | | return totalUsdt;
|
| | | }
|
| | | public void setTotalUsdt(BigDecimal totalUsdt) {
|
| | | this.totalUsdt = totalUsdt;
|
| | | }
|
| | | public BigDecimal getTotalCny() {
|
| | | return totalCny;
|
| | | }
|
| | | public void setTotalCny(BigDecimal totalCny) {
|
| | | this.totalCny = totalCny;
|
| | | }
|
| | | public List<MemberWalletCoinEntity> getWalletCoinEntities() {
|
| | | return walletCoinEntities;
|
| | | }
|
| | | public void setWalletCoinEntities(List<MemberWalletCoinEntity> walletCoinEntities) {
|
| | | this.walletCoinEntities = walletCoinEntities;
|
| | | }
|
| | | private List<MemberWalletCoinInfoVo> memberWalletCoinInfoVo;
|
| | |
|
| | | }
|