fix: TypeScript 빌드 에러 수정
- tableManagementService: getTableDataWithEntityJoins options에 companyCode 타입 추가 - tableManagementController: Promise<void> 함수의 return 문 수정 - commonCodeService: CodeInfo 인터페이스에 menu_objid 필드 추가 - numberingRuleService: siblingObjids 변수 스코프 수정 (catch 블록 접근 가능하도록)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user