|
|
|
|
@ -30,6 +30,7 @@ import com.alibaba.excel.annotation.ExcelProperty; |
|
|
|
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|
|
|
|
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
|
|
|
|
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema; |
|
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
|
import java.io.Serial; |
|
|
|
|
@ -90,4 +91,13 @@ public class CraftAbilityExcel implements Serializable { |
|
|
|
|
@ExcelProperty("是否已删除") |
|
|
|
|
private Long isDeleted; |
|
|
|
|
|
|
|
|
|
@ExcelProperty("局部镀订单面积") |
|
|
|
|
private BigDecimal localArea; |
|
|
|
|
@ExcelProperty("外协限制") |
|
|
|
|
private String wxLimit; |
|
|
|
|
@ExcelProperty("厂内比例") |
|
|
|
|
private String inRate; |
|
|
|
|
@ExcelProperty("外协比例") |
|
|
|
|
private String outRate; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|