export class SysRoleInfo { roleId: string; tenantId: string; comId: string; busType: string; roleType: string; roleName: string; useState: string; constructor( options: { roleId?: string; tenantId?: string; comId?: string; busType?: string; roleType?: string; roleName?: string; useState?: string; } = {} ) { this.roleId = options.roleId || ""; this.tenantId = options.tenantId || ""; this.comId = options.comId || ""; this.busType = options.busType || ""; this.roleType = options.roleType || ""; this.roleName = options.roleName || ""; this.useState = options.useState || ""; } }