using Long.Common.Basedata; using Long.Core.Query; namespace Long.Service.AdminService.Basedata { public interface IUserService { /// /// 获取全部系统用户 /// /// IEnumerable Get(); /// /// 通过条件获取列表 /// /// /// IEnumerable Get(QueryParamenter queryParamenter); /// /// 通过 Id 获取系统用户实体 /// /// /// User GetById(long id); } }