7878b52c02ae13b085562da67801911c4bb6c0c9.svn-base 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. *
  3. * * Copyright (c) 2019-2020, 冷冷 (wangiegie@gmail.com).
  4. * * <p>
  5. * * Licensed under the GNU Lesser General Public License 3.0 (the "License");
  6. * * you may not use this file except in compliance with the License.
  7. * * You may obtain a copy of the License at
  8. * * <p>
  9. * * https://www.gnu.org/licenses/lgpl.html
  10. * * <p>
  11. * * Unless required by applicable law or agreed to in writing, software
  12. * * distributed under the License is distributed on an "AS IS" BASIS,
  13. * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * * See the License for the specific language governing permissions and
  15. * * limitations under the License.
  16. *
  17. */
  18. package org.jeecg.common.constant;
  19. /**
  20. * @author scott
  21. * @date 2019年05月18日
  22. * 服务名称
  23. */
  24. public interface ServiceNameConstants {
  25. /**
  26. * 系统管理 admin
  27. */
  28. String SYSTEM_SERVICE = "jeecg-system";
  29. String SYSTEM_ONLINE = "jeecg-online";
  30. /**
  31. * gateway通过header传递根路径 basePath
  32. */
  33. String X_GATEWAY_BASE_PATH = "X_GATEWAY_BASE_PATH";
  34. }