package com.chinaztt.mes.technology.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
@Data
|
public class RoutingExcelData {
|
@ExcelProperty(value = "零件号")
|
private String partNo;
|
|
@ExcelProperty(value = "零件版本号")
|
private String partVersion;
|
|
@ExcelProperty(value = "零件描述")
|
private String partName;
|
|
@ExcelProperty(value = "线芯")
|
private String wireCore;
|
|
@ExcelProperty(value = "工艺路线替代")
|
private String alternativeNo;
|
|
@ExcelProperty(value = "工艺路线替代描述")
|
private String alternativeDesc;
|
|
@ExcelProperty(value = "逐步采用日期")
|
private String phaseInDate;
|
|
@ExcelProperty(value = "逐步淘汰日期")
|
private String phaseOutDate;
|
|
@ExcelProperty(value = "结构类型")
|
private String bomTypeDb;
|
|
@ExcelProperty(value = "工序号")
|
private String operationOrder;
|
|
@ExcelProperty(value = "工序描述")
|
private String operationName;
|
|
@ExcelProperty(value = "产出零件号")
|
private String childPartNo;
|
|
@ExcelProperty(value = "产出零件描述")
|
private String childPartName;
|
|
@ExcelProperty(value = "产出零件版本")
|
private String childPartVersion;
|
|
@ExcelProperty(value = "工作中心号")
|
private String workCenter;
|
|
@ExcelProperty(value = "工作中心描述")
|
private String workCenterName;
|
|
@ExcelProperty(value = "机器运转因素")
|
private String machRunFactor;
|
|
@ExcelProperty(value = "机器设置时间")
|
private String machSetupTime;
|
|
@ExcelProperty(value = "因素单位")
|
private String runTimeCodeDb;
|
|
@ExcelProperty(value = "劳力运转因素")
|
private String laborRunFactor;
|
|
@ExcelProperty(value = "劳力设置时间")
|
private String laborSetupTime;
|
|
@ExcelProperty(value = "人工类别")
|
private String laborClassNo;
|
|
@ExcelProperty(value = "劳力等级描述")
|
private String laborRunName;
|
|
@ExcelProperty(value = "班组人员")
|
private String crewSize;
|
|
private String routingKey;
|
|
}
|