| | |
| | | |
| | | import java.math.BigDecimal; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.mzl.flower.base.BaseAutoEntity; |
| | | import com.mzl.flower.base.BaseEntity; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Accessors(chain = true) |
| | | @TableName("t_wallet") |
| | | public class WalletDO extends BaseEntity { |
| | | public class WalletDO extends BaseAutoEntity { |
| | | |
| | | |
| | | /** |
| | |
| | | * 总交易金额 |
| | | */ |
| | | @ApiModelProperty(value = "总交易金额") |
| | | private String totalTransactionAmount; |
| | | private BigDecimal totalTransactionAmount; |
| | | |
| | | /** |
| | | * 总交易金额 |
| | | */ |
| | | @ApiModelProperty(value = "已结算金额") |
| | | private BigDecimal settledAmount; |
| | | |
| | | |
| | | } |