namespace DocumentServiceAPI.Application;
///
/// 系统服务接口
///
public class SystemAppService : IDynamicApiController
{
private readonly ISystemService _systemService;
public SystemAppService(ISystemService systemService)
{
_systemService = systemService;
}
///
/// 获取系统描述
///
///
public string GetDescription()
{
return _systemService.GetDescription();
}
}