mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 02:29:24 +08:00
全面修改Id为Guid类型,为2.0版做准备
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace OpenAuth.Domain.Interface
|
||||
@@ -7,12 +8,12 @@ namespace OpenAuth.Domain.Interface
|
||||
{
|
||||
IEnumerable<Module> LoadModules(int pageindex, int pagesize);
|
||||
|
||||
IEnumerable<Module> LoadInOrgs(params int[] orgId);
|
||||
int GetModuleCntInOrgs(params int[] orgIds);
|
||||
IEnumerable<Module> LoadInOrgs(int pageindex, int pagesize, params int[] orgIds);
|
||||
IEnumerable<Module> LoadInOrgs(params Guid[] orgId);
|
||||
int GetModuleCntInOrgs(params Guid[] orgIds);
|
||||
IEnumerable<Module> LoadInOrgs(int pageindex, int pagesize, params Guid[] orgIds);
|
||||
|
||||
|
||||
void Delete(int id);
|
||||
void Delete(Guid id);
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user