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
| namespace Gs.Toolbox.ApiCore.Group;
|
| /// <summary>
| /// swagger分组枚举值
| /// </summary>
| public enum ApiGroupNames
| {
| [GroupInfo(Title = "系统模块", Description = "系统模块,用户,权限,角色")]
| Sys,
|
| [GroupInfo(Title = "基础资料模块", Description = "物料,供应商,客户,部门")]
| BaseInfo,
|
| [GroupInfo(Title = "仓库模块", Description = "库存,盘点")]
| PerMission,
|
| [GroupInfo(Title = "检验模块", Description = "检验项目,各种检验")]
| QC,
|
| [GroupInfo(Title = "采购模块", Description = "采购订单")]
| BillCode20,
|
| [GroupInfo(Title = "ERP和MES数据交换模块", Description = "ERP和MES数据交换模块")]
| ErpMes,
|
| [GroupInfo(Title = "报表打印模块", Description = "报表打印模块")]
| Report,
|
| [GroupInfo(Title = "工单模块", Description = "工单模块")]
| WOM,
|
| [GroupInfo(Title = "其它入库", Description = "其它入库")]
| QTRK,
|
| [GroupInfo(Title = "其它出库", Description = "其它出库")]
| QTCK,
| [GroupInfo(Title = "委外", Description = "委外")]
| WW,
| [GroupInfo(Title = "布局", Description = "布局")]
| FM,
| [GroupInfo(Title = "销售", Description = "销售")]
| XS,
| [GroupInfo(Title = "受托", Description = "受托")]
| XT,
| [GroupInfo(Title = "报表", Description = "报表")]
| Rport,
| [GroupInfo(Title = "PDA", Description = "PDA")]
| PDA
| }
|
|