- using System.Threading.Tasks;
- using Abp.Application.Services;
- using WeApp.BaseInfo;
- namespace WeApp.BaseSystem.AppGuids
- {
- public interface ISysAppGuidAppService : IApplicationService
- {
- /// <summary>
- /// 获取自定义Guid
- /// </summary>
- /// <param name="type"></param>
- /// <returns></returns>
- Task<int> GetAppGuid(AppGuidType type);
- }
- }
|