chenrui
2025-03-14 9687fd99fdf6208dbf747ea45c440f192a9af815
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
package com.ruoyi.common.constant;
 
/**
 * 菜单调准路径
 *
 * @Author zhuo
 * @Date 2025/3/14
 */
public class MenuJumpPathConstants {
 
    /**
     * 报告编制
     */
    public static final String REPORT_PREPARATION = "ReportPreparation";
 
    /**
     * 检验任务复核
     */
    public static final String INSPECTION_REVIEW = "InspectionReview";
 
    /**
     * 质量监控
     */
    public static final String QUALITY_MONITOR = "EnsureResultsValidity";
 
    /**
     * 质量监督
     */
    public static final String QUALITY_SUPERVISE = "QualityControlPlan";
 
    /**
     * 人员
     */
    public static final String DEVICE = "Device";
 
    /**
     * 设备
     */
    public static final String PERSONNEL = "PersonnelInfo";
}