Skip to content

Commit

Permalink
feat: pdf 모집의뢰서 값 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jikwan0327 committed Mar 14, 2024
1 parent e8147b1 commit d082650
Show file tree
Hide file tree
Showing 7 changed files with 314 additions and 69 deletions.
1 change: 1 addition & 0 deletions src/Apis/Companies/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ export const useGetCompanyDetail = (companyId: string) => {
},
{
refetchOnWindowFocus: true,
enabled: !!+companyId,
}
);
};
Expand Down
1 change: 1 addition & 0 deletions src/Apis/Companies/response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export interface CompanyDetailResponse {
fax: string | null;
email: string;
representative_name: string;
representative_phone_no: string;
founded_at: string;
worker_number: number;
take: number;
Expand Down
2 changes: 2 additions & 0 deletions src/Apis/Recruitments/response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ export interface RecruitmentFormDetailResponse {
company_name: string;
areas: AreasType[];
required_grade: number | null;
working_hours: string;
flexible_working: boolean;
start_time: string;
end_time: string;
required_licenses: string[];
Expand Down
Loading

0 comments on commit d082650

Please sign in to comment.