코드 활성/비활성화 해결
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user