fix: TypeScript 빌드 에러 수정

- tableManagementService: getTableDataWithEntityJoins options에 companyCode 타입 추가
- tableManagementController: Promise<void> 함수의 return 문 수정
- commonCodeService: CodeInfo 인터페이스에 menu_objid 필드 추가
- numberingRuleService: siblingObjids 변수 스코프 수정 (catch 블록 접근 가능하도록)
This commit is contained in:
kjs
2025-11-12 15:18:32 +09:00
parent 41404e021e
commit e723523ec5
4 changed files with 9 additions and 4 deletions

View File

@@ -23,7 +23,8 @@ export interface CodeInfo {
description?: string | null;
sort_order: number;
is_active: string;
company_code: string; // 추가
company_code: string;
menu_objid?: number | null; // 메뉴 기반 코드 관리용
created_date?: Date | null;
created_by?: string | null;
updated_date?: Date | null;