| | |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.iailab.module.model.mcs.pre.entity.*; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | |
| | | @ExcelProperty("类型名称") |
| | | private String itemtypename; |
| | | |
| | | @Schema(description = "预测长度") |
| | | @ExcelProperty("预测长度") |
| | | private Integer predictlength; |
| | | |
| | | @Schema(description = "粒度") |
| | | @ExcelProperty("粒度") |
| | | private BigDecimal granularity; |
| | | private Integer granularity; |
| | | |
| | | @Schema(description = "是否融合") |
| | | @ExcelProperty("是否融合") |
| | | private BigDecimal isfuse; |
| | | private Integer isfuse; |
| | | |
| | | @Schema(description = "是否检查") |
| | | @ExcelProperty("是否检查") |
| | | private BigDecimal workchecked; |
| | | private Integer workchecked; |
| | | |
| | | @Schema(description = "模块ID") |
| | | @ExcelProperty("模块ID") |
| | |
| | | |
| | | @Schema(description = "是否启用") |
| | | @ExcelProperty("是否启用") |
| | | private BigDecimal status; |
| | | private Integer status; |
| | | |
| | | @Schema(description = "类别ID") |
| | | @ExcelProperty("类别ID") |
| | |
| | | @Schema(description = "存放表") |
| | | @ExcelProperty("存放表") |
| | | private String tablename; |
| | | |
| | | } |
| | | |