diff --git a/frontend/src/api/bypassApi.ts b/frontend/src/api/bypassApi.ts index 29241e1..deec912 100644 --- a/frontend/src/api/bypassApi.ts +++ b/frontend/src/api/bypassApi.ts @@ -41,6 +41,7 @@ export interface BypassConfigRequest { export interface BypassConfigResponse { id: number; domainName: string; + endpointName: string; displayName: string; webclientBean: string; externalPath: string; @@ -57,8 +58,8 @@ export interface BypassConfigResponse { export interface CodeGenerationResult { controllerPath: string; - servicePath: string; - dtoPath: string; + servicePaths: string[]; + dtoPaths: string[]; message: string; } diff --git a/frontend/src/pages/BypassConfig.tsx b/frontend/src/pages/BypassConfig.tsx index aa211a4..ae9186a 100644 --- a/frontend/src/pages/BypassConfig.tsx +++ b/frontend/src/pages/BypassConfig.tsx @@ -463,19 +463,29 @@ export default function BypassConfig() {
{generationResult.message}
생성된 파일
- {[ - { label: 'Controller', path: generationResult.controllerPath }, - { label: 'Service', path: generationResult.servicePath }, - { label: 'DTO', path: generationResult.dtoPath }, - ].map(({ label, path }) => ( -