package com.chinaztt.mes.basic.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author ZTT
|
*/
|
@Data
|
public class PartData {
|
/**
|
* 零件号
|
*/
|
@ExcelProperty("零件号")
|
private String partNo;
|
/**
|
* 名称
|
*/
|
@ExcelProperty("零件名称")
|
private String partName;
|
/**
|
* 单位
|
*/
|
@ExcelProperty("规格")
|
private String spec;
|
/**
|
* 电压等级
|
*/
|
@ExcelProperty("电压等级")
|
private String voltageLevel;
|
/**
|
* 特性1
|
*/
|
@ExcelProperty(value = "特性1")
|
private String characteristic1;
|
/**
|
* 特性2
|
*/
|
@ExcelProperty(value = "特性2")
|
private String characteristic2;
|
/**
|
* 特性3
|
*/
|
@ExcelProperty(value = "特性3")
|
private String characteristic3;
|
/**
|
* 型号
|
*/
|
@ExcelProperty(value = "型号")
|
private String partModel;
|
/**
|
* 单位
|
*/
|
@ExcelProperty("单位")
|
private String unit;
|
/**
|
* 零件类型
|
*/
|
@ExcelProperty("零件类型")
|
private String materialType;
|
/**
|
* 一级分类
|
*/
|
@ExcelProperty("一级分类")
|
private String assortment;
|
/**
|
* 二级分类
|
*/
|
@ExcelProperty("二级分类")
|
private String category;
|
/**
|
* 三级分类
|
*/
|
@ExcelProperty("三级分类")
|
private String threeLevelClassification;
|
/**
|
*
|
*/
|
@ExcelProperty("计划方法")
|
private String planningMethod;
|
/**
|
*
|
*/
|
@ExcelProperty("版本号")
|
private String engChgLevel;
|
/**
|
*
|
*/
|
@ExcelProperty("IFS启用批次管理")
|
private Boolean lotTrackingIfs;
|
/**
|
*
|
*/
|
@ExcelProperty("备注")
|
private String description ;
|
}
|