import { DataAuthEnum } from 'nsn-enum';

/** 系统-角色与部门 */
export interface RoleDept {

  /** 角色 */
  roleId: string;

  /** 部门 */
  deptId: string;

  /** dto 数据权限 */
  dataAuth: DataAuthEnum;

  /** dto 部门主键集合 */
  deptIdList: Array<string>;
}