廖井涛
6 天以前 6d6ae282ee8a58d6846e7c6986649c474444dae7
north-glass-erp/src/main/java/com/example/erp/dto/pp/WorkInProgressDTO.java
@@ -3,6 +3,8 @@
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class WorkInProgressDTO {
    @ExcelProperty("工序")
@@ -28,13 +30,15 @@
    @ExcelProperty("订单数")
    private Integer quantity;
    @ExcelProperty("宽")
    private String childWidth;
    private Double childWidth;
    @ExcelProperty("高")
    private String childHeight;
    private Double childHeight;
    @ExcelProperty("厚度")
    private BigDecimal thickness;
    @ExcelProperty("库存数")
    private Integer stockNum;
    @ExcelProperty("库存面积")
    private Double stockArea;
    private BigDecimal stockArea;
    @ExcelProperty("成品名称")
    private String productName;
    @ExcelProperty("在制品名称")
@@ -45,4 +49,5 @@
    private String glassNumber;
    @ExcelProperty("上工序报工班组")
    private String teamsGroupsName;
}