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
| export const zh = {
| query: {},
| upload: {},
| table: {
| processRouteID:"工艺路线ID",
| processRouteVersion:"工艺路线版本",
| effectiveDate:"生效日期",
| expiringDate:"失效日期",
| integrationDate:"集成日期",
| applicableFactories:"适用工厂",
| parentPartNumber:"父级料号",
| parentMaterialDescription:"父级物料描述",
| materialDescription:"物料描述",
| usage:"用量",
| operationSequence: "工序序号",
| applicableWorkshop:"适用车间",
| productivityModel: "产能模型",
| designCapacity:"设计产能"
| }
| };
|
| export const en = {
| query: {},
| 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"
| }
| };
|
|