| | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | public class WorkInProgressDTO { |
| | | @ExcelProperty("工序") |
| | |
| | | private Double childWidth; |
| | | @ExcelProperty("高") |
| | | private Double childHeight; |
| | | @ExcelProperty("厚度") |
| | | private BigDecimal thickness; |
| | | @ExcelProperty("库存数") |
| | | private Integer stockNum; |
| | | @ExcelProperty("库存面积") |
| | | private Double stockArea; |
| | | private BigDecimal stockArea; |
| | | @ExcelProperty("成品名称") |
| | | private String productName; |
| | | @ExcelProperty("在制品名称") |
| | |
| | | private String glassNumber; |
| | | @ExcelProperty("上工序报工班组") |
| | | private String teamsGroupsName; |
| | | |
| | | } |