1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.production.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.apache.poi.ss.usermodel.IndexedColors;
 
@Data
public class BomImportErrorDto extends BomImportDto{
 
    @ApiModelProperty(value = "错误信息")
    @Excel(name = "错误信息",sort = 1,color = IndexedColors.RED)
    private String errorMsg;
 
}