/** 系统-用户与角色 */
export interface UserRole {

  /** 角色 */
  roleId: string;

  /** 用户 */
  userId: string;
}