ServiceConsts.cs 727 B

12345678910111213141516171819202122232425262728
  1. using Microsoft.Extensions.DependencyInjection;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace QM.KJGH.CgglService
  8. {
  9. public class ServiceConsts
  10. {
  11. #region 服务
  12. /// <summary>
  13. /// 服务代码
  14. /// </summary>
  15. public static string ServiceCode { set; get; } = "QM.KJGH.CgglService";
  16. /// <summary>
  17. /// 服务名称
  18. /// </summary>
  19. public static string ServiceName { set; get; } = "规划成果管理服务";
  20. #endregion
  21. /// <summary>
  22. /// 服务提供商
  23. /// </summary>
  24. public static ServiceProvider Provider { set; get; }
  25. }
  26. }