公告板
版本库
filestore
活动
搜索
登录
main
/
JC08WCS
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
程序提交
wxw
2025-05-12
c2dc3bd2569f8398e2710aca2685bb3115c77eb0
[JC08WCS.git]
/
WCS-V1.0
/
BLL
/
IDAL
/
IDALRelation.cs
1
2
3
4
5
6
7
8
9
10
11
using System.Collections.Generic;
using Model;
namespace BLL
{
public interface IDALRelation
{
IList<Relation> GetList(string RoleNum);
bool SetPermission(AjaxRelation model);
}
}