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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.example.erp.entity.pp;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.example.erp.entity.sd.BasicData;
import lombok.Data;
 
import java.time.LocalDate;
 
@Data
public class Report {
    @TableId(type = IdType.AUTO)
    //工序
    private String process;
    //流程卡号
    private String processId;
    //客户名称
    private String customerName;
    //项目名称
    private String project;
    //销售单号
    private String orderId;
    //批次
    private String batch;
    //序号
    private String orderNumber;
    //小片顺序
    private String technologyNumber;
    //形状
    private String shape;
    //工艺流程
    private String technologyFlow;
    //订单数
    private String orderNum;
    //宽
    private String childWidth;
    //高
    private String childHeight;
    //库存数
    private String stockNum;
    //库存面积
    private String stockArea;
    //产品名称
    private String productName;
    //弯钢半径
    private String bendRadius;
 
    //单片面积
    private String childArea;
    //实际面积
    private String actualArea;
    //完成数量
    private String completeNum;
    //完成面积
    private String completeArea;
    //未完数量
    private String incompleteNum;
    //未完面积
    private String incompleteArea;
}