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.chinaztt.mes.technology.dto;
|
| import com.chinaztt.mes.technology.entity.DocumentMaterialCost;
| import lombok.Data;
|
| /**
| * @Author: zhangxy
| * @Date: 2021-05-11 15:22
| */
| @Data
| public class DocumentMaterialCostDTO extends DocumentMaterialCost {
|
| /**
| * 成品名称,通过bom的partid 可查询到
| */
| private String finishedProduct;
|
| /**
| * bom 编号
| */
| private String bomNumber;
|
| /**
| * 零件名
| */
| private String partName;
|
| /**
| * 单位
| */
| private String unit;
|
| /**
| * 工序名称
| */
| private String operationName;
|
| }
|
|