username@email.com
2023-08-31 633193b38b094ee2e0651cf64b95fb5b559c8714
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace DocumentServiceAPI.Application;
 
/// <summary>
/// 系统服务接口
/// </summary>
public class SystemAppService : IDynamicApiController
{
    //private readonly ISystemService _systemService;
    //public SystemAppService(ISystemService systemService)
    //{
    //    _systemService = systemService;
    //}
 
    ///// <summary>
    ///// 获取系统描述
    ///// </summary>
    ///// <returns></returns>
    //public string GetDescription()
    //{
    //    return _systemService.GetDescription();
    //}
}