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
| package com.yuanchu.limslaboratory.enums;
|
| /**
| * @Author 张宾
| * @Date 2023825
| */
| public enum MenuEnum {
| standardLibrary(1L,"标准库"),
| inspectionManagement(2L,"报检管理"),
| commissionInspection(3L,"委托检验"),
| reportForInspection(4L,"原材料报检"),
| experiment(5L,"试验管理"),
| inspectionApplication(6L,"新增检验"),
| planAssignments(7L,"检验计划"),
| checkTheReport(8L,"检验报告"),
| reportAuditing(9L,"报告审核"),
| nonConformanceReview(10L,"不合格品反馈"),
| nonConformingFeedback(11L,"不合格品评审"),
| passRateStatistics(12L,"合格率统计"),
| laboratory(13L,"实验室管理"),
| ledger(14L,"设备台账"),
| measure(15L,"计量管理"),
| gather(16L,"设备采集"),
| personnel(17L,"人员管理"),
| role(18L,"角色管理"),
| CNAS(19L,"CNS管理"),
| reviewAnnualPlan(20L,"审核年度计划"),
| nonConformanceManage(21L,"不符合项管理"),
| nonConformanceStatistics(22L,"不符合项统计"),
| satisfactionSurveys(23L,"满意度调查"),
| chart(24L,"智能图表"),
| center(25L,"实验中心"),
| spc(26L,"SPC控制图"),
| shota(27L,"正太分布图"),
| work(28L,"工作统计"),
| message(29L,"消息代办"),
| messages(30L,"我的消息"),
| toDo(31L,"我的代办"),
| personal(32L,"人员管理"),
| myInformation(33L,"我的信息"),
| baseData(34L,"基础数据"),
| basicDataMessage(35L,"基础数据"),
| org(36L,"组织架构");
|
| private Long menuId;
| private String menuName;
|
|
| MenuEnum(Long menuId, String menuName) {
| this.menuId = menuId;
| this.menuName = menuName;
| }
| public Long menuId() {
| return this.menuId;
| }
|
| public String menuName() {
| return this.menuName;
| }
| }
|
|