package com.example.erp.dto.pp;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
@Data
|
public class ProcessCardProgressDTO {
|
@ExcelProperty("产品名称")
|
private String productName;
|
@ExcelProperty("单片名称")
|
private String glassChild;
|
@ExcelProperty("订单类型")
|
private String orderType;
|
@ExcelProperty("流程卡号")
|
private String processId;
|
@ExcelProperty("小片顺序")
|
private String technologyNumber;
|
@ExcelProperty("数量")
|
private Integer quantity;
|
@ExcelProperty("次破数量")
|
private Integer brokenNum;
|
@ExcelProperty("入库面积")
|
private Double inventoryArea;
|
}
|