| | |
| | | package com.ruoyi.account.vo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.core.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | |
| | | @Data |
| | | public class WalletStatisticsDetail { |
| | | /** |
| | | * 门店名称 |
| | | */ |
| | | @ApiModelProperty(value = "门店名称") |
| | | @Excel(name = "门店名称") |
| | | private String shopName; |
| | | |
| | | /** |
| | | * 用户姓名 |
| | |
| | | * 变更数量 |
| | | */ |
| | | @ApiModelProperty(value = "变更数量") |
| | | @Excel(name = "变更数量") |
| | | private BigDecimal changeAmount; |
| | | /** |
| | | * 变更数量 |
| | | */ |
| | | @ApiModelProperty(value = "变更数量--带金额符号") |
| | | @Excel(name = "变更数量") |
| | | private String changeAmountString; |
| | | |
| | | @ApiModelProperty(value = "增或减标识: 1-增 2-减") |
| | | private Integer flag; |
| | | } |