로그인 백엔드 구현 및 로그인 프론트 기능 구현

This commit is contained in:
이진기
2024-11-15 14:46:38 +09:00
parent 001bba7cb1
commit fcfbd1fd96
17 changed files with 473 additions and 386 deletions

View File

@@ -0,0 +1,25 @@
export type MenuType = {
menuId: string;
siteId: string;
upMenuId: string;
menuDepth: number;
menuOrder: number;
menuName: string;
menuType: 'MENU' | 'PAGE' | 'API' | 'TAB' | 'COMMON_MENU' | 'COMMON_API';
menuFeature: 'PAGE' | 'LIST' | 'DETAIL' | 'CREATE' | 'UPDATE' | 'DELETE';
menuLayout: string;
menuUrl: string;
menuMethod: string;
menuDescription: string;
menuLinkTarget: 'CURRENT' | 'BLANK';
menuUseSatisfaction: boolean;
menuUseMngInfo: boolean;
menuMngId: string;
menuStatus: 'ENABLED' | 'HIDDEN' | 'DISABLED';
delYn: boolean;
useYn: boolean;
frstRgtrId: string;
frstRegDt: string;
lastMdfrId: string;
lastMdfcnDt: string;
};