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
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Threading.Tasks;
|
| namespace VueWebCoreApi.ApiGroup
| {
| public enum OpenApiGroup
| {
| [Description("登录信息")]
| 登录信息 = 1,
| [Description("基础设置")]
| 基础设置 = 2,
| [Description("基本资料")]
| 基本资料 = 3,
| [Description("物料管理")]
| 物料管理 = 4,
| [Description("设备管理")]
| 设备管理 = 5,
| [Description("模具管理")]
| 模具管理 = 6,
| [Description("工单管理")]
| 工单管理 = 7,
| [Description("统计报表")]
| 统计报表 = 8,
| [Description("质量管理")]
| 质量管理 = 9,
| [Description("周期任务")]
| 周期任务 = 10,
| [Description("系统设置")]
| 系统设置 = 11,
| [Description("通用基础资料")]
| 通用基础资料 = 12,
| [Description("畅捷通ERP基础数据同步")]
| 畅捷通ERP基础数据同步 = 13,
| [Description("Excel导入")]
| Excel导入 = 14,
| [Description("单据打印")]
| 单据打印 = 15,
| [Description("看板管理")]
| 看板管理 = 16,
| [Description("计时工资")]
| 计时工资 = 17,
| [Description("App个人中心")]
| App个人中心 = 20,
| [Description("App智能分析")]
| App智能分析 = 21,
| [Description("App安灯管理")]
| App安灯管理 = 22,
| [Description("SOP管理")]
| SOP管理 = 23
|
| }
| }
|
|