UNPKG
nsn-entity
Version:
latest (1.0.20210118)
1.0.20210118
1.0.20201209
1.0.20201203
1.0.20201105
1.0.20200928
1.0.20200925
1.0.20200603
1.0.20200602
1.0.20101202
NSN实体组件
www.nsn.com
nsn-entity
/
es
/
sys
/
RoleDept.d.ts
17 lines
(12 loc)
•
286 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { DataAuthEnum }
from
'nsn-enum'
;
/** 系统-角色与部门 */
export
interface
RoleDept
{
/** 角色 */
roleId:
string
;
/** 部门 */
deptId:
string
;
/** dto 数据权限 */
dataAuth: DataAuthEnum;
/** dto 部门主键集合 */
deptIdList: Array<
string
>; }