package com.panzhihua.common.model.vos.community.wallet; import java.math.BigDecimal; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data @ApiModel("交易记录统计返回参数") public class ComActWalletTradeStatisticsAdminVO { @ApiModelProperty("今日交易金额") private BigDecimal dayTotal = BigDecimal.ZERO; @ApiModelProperty("本月交易金额") private BigDecimal monthTotal = BigDecimal.ZERO; @ApiModelProperty("累计交易金额") private BigDecimal total = BigDecimal.ZERO; }