12345678910111213141516171819202122232425262728 |
- using Microsoft.Extensions.DependencyInjection;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace QM.KJGH.CgglService
- {
- public class ServiceConsts
- {
- #region 服务
- /// <summary>
- /// 服务代码
- /// </summary>
- public static string ServiceCode { set; get; } = "QM.KJGH.CgglService";
- /// <summary>
- /// 服务名称
- /// </summary>
- public static string ServiceName { set; get; } = "规划成果管理服务";
- #endregion
- /// <summary>
- /// 服务提供商
- /// </summary>
- public static ServiceProvider Provider { set; get; }
- }
- }
|