코드 활성/비활성화 해결

This commit is contained in:
dohyeons
2025-09-30 14:28:40 +09:00
parent 0b787b4c4c
commit 142f6a1a90
6 changed files with 80 additions and 39 deletions

View File

@@ -17,13 +17,22 @@ export interface CodeCategory {
export type CategoryInfo = CodeCategory;
export interface CodeInfo {
code_category: string;
code_value: string;
code_name: string;
code_name_eng?: string | null;
// 백엔드 응답 필드 (변환된 형태)
codeValue?: string;
codeName?: string;
codeNameEng?: string | null;
description?: string | null;
sort_order: number;
is_active: string;
sortOrder?: number;
isActive?: string | boolean;
useYn?: string;
// 기존 필드 (하위 호환성을 위해 유지)
code_category?: string;
code_value?: string;
code_name?: string;
code_name_eng?: string | null;
sort_order?: number;
is_active?: string;
created_date?: string | null;
created_by?: string | null;
updated_date?: string | null;