테이블 타입관리 에러

This commit is contained in:
kjs
2025-09-01 15:22:47 +09:00
parent b58cfc3db8
commit def192641b
9 changed files with 1365 additions and 277 deletions

View File

@@ -171,8 +171,8 @@ export class AuthService {
// 권한명들을 쉼표로 연결
const authNames = authInfo
.filter((auth) => auth.authority_master?.auth_name)
.map((auth) => auth.authority_master!.auth_name!)
.filter((auth: any) => auth.authority_master?.auth_name)
.map((auth: any) => auth.authority_master!.auth_name!)
.join(",");
// 회사 정보 조회 (Prisma ORM 사용으로 변경)