1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ruoyi.common.core.constant;
|
| /**
| * 服务名称
| *
| * @author ruoyi
| */
| public interface ServiceNameConstants
| {
| /**
| * 认证服务的serviceid
| */
| public static final String AUTH_SERVICE = "ruoyi-auth";
|
| /**
| * 系统模块的serviceid
| */
| public static final String SYSTEM_SERVICE = "ruoyi-system";
| }
|
|