服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-10-23 666a8c8ed399c6e74b2f307bf6649b32a0fdb3e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using Autofac;
using Rhea.Common;
using Rhea.Common.Authorization;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Tiger.IBusiness
{
    public interface IBizContext
    {
        /// <summary>
        /// 当前项目
        /// </summary>
        public string GetCurrentProject();
        /// <summary>
        /// 服务器机器码
        /// </summary>
        public string GetMachineCode();
        /// <summary>
        /// Tiger 项目激活实体
        /// </summary>
        public ITigerActive GetTigerActive();
        /// <summary>
        /// 接口任务服务
        /// </summary>
        public IInterfaceService GetInterfaceService();
    }
}