package com.xcong.excoin.modules.login.entity; import java.math.BigDecimal; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; /** * @description 钱包表 * @author admin * @date 2020-09-17 14:31 */ @Data @TableName("wt_wallet_detail") public class WtWalletDetail { /** * 主键 */ private Long id; /** * 主地址 */ private String address; /** * 币种 */ private String symbol; /** * 余额 */ private BigDecimal balance; /** * 主钱包 0:否 1:是 */ private Integer main; /** * 是否显示 0显示 1不显示 */ private Integer isShow; }