mitao
2024-04-19 b21c37b7899b17dede7773db3c799aab1063ae1c
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
package com.finance.system.importExcel;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import com.finance.system.vo.FieldVO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * @author mitao
 * @date 2024/3/21
 */
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="基础数据导入Excel对象")
public class BasicDataExcel implements Serializable {
 
    private static final long serialVersionUID = 8626000917362659046L;
 
    @ApiModelProperty(value = "季度")
    @Excel(name = "填报季度")
    private String quarter;
 
    @ApiModelProperty(value = "转移支付规模")
    @Excel(name = "转移支付规模")
    private String transferPaymentScale;
 
    @ApiModelProperty(value = "当期GDP")
    @Excel(name = "当期GDP")
    private String currentGdp;
    private List<FieldVO> fieldVOS;
 
    @Excel(name = "备注")
    private String remark;
}