You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
265 B
C#
15 lines
265 B
C#
9 months ago
|
using DS.Module.Core;
|
||
6 months ago
|
using DS.WMS.Core.Sys.Dtos;
|
||
9 months ago
|
|
||
6 months ago
|
namespace DS.WMS.Core.Sys.Interface;
|
||
9 months ago
|
|
||
|
public interface IAdminService
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 获取服务器信息
|
||
|
/// </summary>
|
||
|
/// <returns></returns>
|
||
|
DataResult<dynamic> GetServerInfo();
|
||
|
|
||
9 months ago
|
|
||
9 months ago
|
}
|