xuhy
2025-07-16 4708af66b7eb6246e5ffdc3c7957f12ceaa7e567
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
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.ruoyi.system.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
@ApiModel(value = "财务管理导出excel")
public class YcFinancialManagementExport implements Serializable {
 
    private String provinceName;
    private String cityName;
    private LocalDateTime payTime;
    private LocalDateTime updateTime;
    private BigDecimal payMoney;
 
    @Excel(name = "城市",width = 30)
    private String provinceAndCityName;
 
    @Excel(name = "收入/支出",width = 30, replace = {"1_收入","2_支出"})
    private Integer revenueType;
 
    @Excel(name = "收入/支出类型",width = 30)
    private String typeName;
 
    @Excel(name = "金额",width = 30)
    private String payMoneyStr;
 
    @Excel(name = "支付/收入时间",width = 30)
    private String payTimeStr;
 
    @Excel(name = "操作人",width = 30)
    private String updateBy;
 
    @Excel(name = "操作时间",width = 30)
    private String updateTimeStr;
 
}