zhanghl
2025-05-21 bb3a0be871454582ac64e4fd2a1d7f06d7ec7d12
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
package com.aps.common.core.constant;
 
/**
 * 服务名称
 * 
 * @author ruoyi
 */
public class ServiceNameConstants
{
    /**
     * 认证服务的serviceid
     */
    public static final String AUTH_SERVICE = "aps-auth";
 
    /**
     * 系统模块的serviceid
     */
    public static final String SYSTEM_SERVICE = "aps-system";
 
    /**
     * 文件服务的serviceid
     */
    public static final String FILE_SERVICE = "aps-file";
 
    /**
     * aps服务的serviceid
     */
    public static final String CORE_SERVICE = "aps-core";
 
    /**
     * 任务服务的serviceid
     */
    public static final String JOB_SERVICE = "aps-job";
}