package com.finance.system.importExcel;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import com.finance.common.enums.FieldTypeEnum;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
|
/**
|
* @author mitao
|
* @date 2024/3/21
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@ApiModel(value="动态字段导入Excel对象")
|
public class FieldExcel implements Serializable {
|
|
private static final long serialVersionUID = -3195855772711996257L;
|
|
@Excel(name = "字段名")
|
private String fieldName;
|
|
private FieldTypeEnum fieldType;
|
|
private String levelOneCategory;
|
|
private String levelTwoCategory;
|
|
private String levelThreeCategory;
|
}
|