huliguo
2025-04-21 17abf0608f62cdd318dba3e7b12a32ea486cb482
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ruoyi.other.vo;
 
import com.ruoyi.common.core.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
@Data
public class ShopBalanceExcel {
    @Excel(name = "门店id")
    private Integer id;
    @Excel(name = "店铺名称")
    private String name;
    @Excel(name = "收益总额")
    private BigDecimal totalMoney;
 
    @Excel(name = "余额")
    private BigDecimal balance;
    @Excel(name = "冻结金额")
    private BigDecimal frozenMoney;
 
    @Excel(name = "可提现金额")
    private BigDecimal canWithdrawMoney;
 
    @Excel(name = "提现中金额")
    private BigDecimal withdrawAuditMoney;
    @Excel(name = "已提现金额")
    private BigDecimal withdrawMoney;
}