Fixiaobai
2023-11-07 940f06f6d8e5508f39bd7f8ce7791d60bfc0686c
mes-technology/src/main/java/com/chinaztt/mes/technology/excel/StructureData.java
@@ -1,7 +1,6 @@
package com.chinaztt.mes.technology.excel;
import com.alibaba.excel.annotation.ExcelProperty;
import jdk.nashorn.internal.objects.annotations.Property;
import lombok.Data;
/**
@@ -11,6 +10,51 @@
@Data
public class StructureData {
   @ExcelProperty(value = "客户")
   private String custom;
   @ExcelProperty(value = "零件号")
   private String partNo;
   @ExcelProperty(value = "零件名称")
   private String partName;
   @ExcelProperty(value = "子件编号")
   private String sonPartNo;
   @ExcelProperty(value = "子件名称(可多填)")
   private String sonPartName;
   @ExcelProperty(value = "模具编号")
   private String sharpenerNo;
   @ExcelProperty(value = "每模穴数")
   private String caveNum;
   @ExcelProperty(value = "产品克重(kg)")
   private String gramWeight;
   @ExcelProperty(value = "浇口克重(kg)")
   private String gateGramWeight;
   @ExcelProperty(value = "成型周期(S)")
   private String moldingCycle;
   @ExcelProperty(value = "机台(吨)")
   private String machine;
   @ExcelProperty(value = "回料比例(%)")
   private String scale;
   @ExcelProperty(value= "烘料时间(H)")
   private String dryingTime;
   @ExcelProperty(value = "烘料温度(℃)")
   private String dryingTemperature;
   @ExcelProperty(value = "包装信息")
   private String packingInfo;
   @ExcelProperty(value = "父件")
   private String fatherPartNo;