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
| export const zh = {
| query: {
| reservedDays:"预留天数",
| days:"天数",
| significantDigit:"有效数字"
|
| },
| upload: {},
| table: {
| processRouteID:"工艺路线ID",
| processRouteVersion:"工艺路线版本",
| effectiveDate:"生效日期",
| expiringDate:"失效日期",
| integrationDate:"集成日期",
| applicableFactories:"适用工厂",
| parentPartNumber:"父级料号",
| parentMaterialDescription:"父级物料描述",
| materialDescription:"物料描述",
| usage:"用量",
| operationSequence: "工序序号",
| applicableWorkshop:"适用车间",
| productivityModel: "产能模型",
| designCapacity:"设计产能",
| requirementID:"需求ID",
| requirementTraceabilityID:"需求追溯ID",
| matchQuantity:"匹配数量",
| workOrderType:"工单类型",
| mainCustomer:"主件客户"
| }
| };
|
| export const en = {
| query: {
| reservedDays:"Reserved Days",
| days:"Days",
| significantDigit:"Significant Digit"
| },
| upload: {},
| table: {
| processRouteID:"Process route ID",
| processRouteVersion:"Process route version",
| effectiveDate:"Effective date",
| expiringDate:"Expiring date",
| integrationDate:"Integration date",
| applicableFactories:"Applicable factories",
| parentPartNumber:"Parent part number",
| parentMaterialDescription:"Parent material description",
| materialDescription:"Material Description",
| usage:"Usage",
| operationSequence: "Operation sequence ",
| applicableWorkshop:"Applicable workshop",
| productivityModel:"Productivity model",
| designCapacity:"Design capacity",
| requirementID:"Requirement ID",
| requirementTraceabilityID:"Requirement traceability ID",
| matchQuantity:"Match Quantity",
| workOrderType:"Work order type",
| mainCustomer:"Main customer"
| }
| };
|
|