using Long.Common.System; namespace Long.Service.UserService.System { /// <summary> /// 系统参数·服务接口 /// </summary> public interface ISystemParameterService { /// <summary> /// 获取一条数据 /// </summary> /// <returns></returns> Task<SystemParameter> GetFirstAsync(); } }