package com.finance.system.importExcel;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
@Data
|
@ApiModel(value = "检查项导入Excel")
|
public class TCheckImportExcel implements Serializable {
|
|
@Excel(width = 30,name = "检查项")
|
private String checkTypeStr;
|
|
@Excel(width = 30,name = "检查内容")
|
private String checkContent;
|
|
}
|