12345678910111213141516171819202122232425262728 |
- using Long.Common.Basedata;
- using Long.Core.Query;
- namespace Long.Service.AdminService.Basedata
- {
- public interface ISystemUserService
- {
-
-
-
-
- Task<IEnumerable<SystemUser>> Get();
-
-
-
-
-
- Task<IEnumerable<SystemUser>> Get(QueryParamenter queryParamenter);
-
-
-
-
-
- Task<SystemUser> GetById(long id);
- }
- }
|