guoyujie
2 天以前 c4b9a339caff12e95f61c3d5dc950aafcc8c566c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.example.erp.dto.pp;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.time.LocalDate;
 
@Data
public class OrderPlanDecompositionDTO {
    @ExcelProperty("销售单号")
    private String orderId;
    @ExcelProperty("客户名称")
    private String customerName;
    @ExcelProperty("项目名称")
    private String project;
    @ExcelProperty("批次")
    private String batch;
    @ExcelProperty("订单数量")
    private Integer quantity;
    @ExcelProperty("订单面积")
    private Double area;
    @ExcelProperty("分架时间")
    private LocalDate createTime;
    @ExcelProperty("切割开始时间")
    private LocalDate startTime;
    @ExcelProperty("完工数量")
    private Integer completionsNum;
    @ExcelProperty("入库数量")
    private Integer receivedQuantity;
    @ExcelProperty("未入库数量")
    private Integer receivedNo;
    @ExcelProperty("是否清单")
    private Integer accomplish;
    @ExcelProperty("生产天数")
    private Integer daysDifference;
 
 
}