chenlu
2024-06-07 2f640b1038fa331954f78ed1f4317212cf5bb34d
north-glass-erp/src/main/java/com/example/erp/dto/pp/ProductionScheduleDTO.java
New file
@@ -0,0 +1,32 @@
package com.example.erp.dto.pp;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
@Data
public class ProductionScheduleDTO {
    @ExcelProperty("订单序号")
    private String orderNumber;
    @ExcelProperty("形状")
    private String shape;
    @ExcelProperty("产品名称")
    private String productName;
    @ExcelProperty("宽")
    private String childWidth;
    @ExcelProperty("高")
    private String childHeight;
    @ExcelProperty("数量")
    private Integer quantity;
    @ExcelProperty("小片顺序")
    private String technologyNumber;
    @ExcelProperty("单片名称")
    private String glassChild;
    @ExcelProperty("入库数量")
    private Integer inventoryNum;
    @ExcelProperty("入库面积")
    private Double inventoryArea;
    @ExcelProperty("发货数量")
    private Integer shippedQuantity;
    @ExcelProperty("发货面积")
    private Double area;
}