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;
|
}
|