My projet/Team project
채용 사이트 관리 프로그램
jiyoon12
2025. 5. 26. 16:44
1. 관리 문서 (노션 정리)
https://www.notion.so/Recruit_system-1fa081ddd92280c5a54af1763869f696
Recruit_system | Notion
요구 사항
www.notion.so
2. git 주소
https://github.com/coramdeo643/recruit_sys/tree/dev
GitHub - coramdeo643/recruit_sys
Contribute to coramdeo643/recruit_sys development by creating an account on GitHub.
github.com
3. 테이블 명세서 및 테이블 설계
채용_관리_프로그램_테이블_명세서.xlsx
0.01MB
create database announce;
use announce;
-- 회원
create Table user (
id int primary key auto_increment,
user_name varchar(20) not null unique,
email varchar(50) not null unique,
password varchar(30) not null,
address varchar(50) not null
);
-- 기업
create Table company (
id int primary key auto_increment,
company_name varchar(50) not null,
address varchar(50) not null
);
-- 채용 공고 (중간 테이블)
create Table announce (
id int primary key auto_increment,
user_id int,
company_id int,
company_name varchar(50) not null,
address varchar(50) not null,
content text not null,
available int not null default 1,
foreign key (user_id) references user(id),
foreign key (company_id) references company(id)
);
insert into user (user_name, email, password, address) values
('홍길동', 'hong@example.com', 'password123', '서울시 강남구 테헤란로'),
('김영희', 'kim@example.com', 'securepwd456', '부산시 해운대구 마린시티로'),
('이철수', 'lee@example.com', 'mypassword789', '인천시 연수구 송도국제대로'),
('박지민', 'park@example.com', 'userpass321', '대구시 수성구 달구벌대로'),
('최수현', 'choi@example.com', 'mypwd654', '광주시 서구 상무중앙로');
insert into company (company_name, address) values
('네이버', '경기도 성남시 분당구 불정로 6'),
('카카오', '제주특별자치도 제주시 첨단로 242'),
('삼성전자', '경기도 수원시 영통구 삼성로 129'),
('LG전자', '서울특별시 영등포구 여의대로 128'),
('SK하이닉스', '경기도 이천시 부발읍 경충대로 2091'),
('쿠팡', '서울 송파구 송파대로 570'),
('라인플러스', '경기 성남시 분당구 황새울로360번길 42'),
('엔씨소프트', '서울 강남구 테헤란로 509'),
('넷마블', '서울 구로구 디지털로26길 38'),
('현대자동차', '서울 송파구 송파대로 570');
insert into announce(company_name, address, content,available) values
('네이버', '경기도 성남시 분당구 불정로 6', '백엔드 개발자 채용 공고 (Java, Spring)', 1),
('네이버', '경기도 성남시 분당구 불정로 6', 'AI 서비스 기획자 모집', 1),
('카카오', '제주특별자치도 제주시 첨단로 242', '프론트엔드 개발자 모집 (React, Vue)', 1),
('카카오', '제주특별자치도 제주시 첨단로 242', '데이터 사이언티스트 채용', 1),
('삼성전자', '경기도 수원시 영통구 삼성로 129', 'AI 연구원 채용 (머신러닝, 딥러닝)', 1),
('삼성전자', '경기도 수원시 영통구 삼성로 129', '시스템 소프트웨어 개발자 구인', 1),
('LG전자', '서울특별시 영등포구 여의대로 128', 'UX/UI 디자이너 구인', 1),
('LG전자', '서울특별시 영등포구 여의대로 128', '임베디드 시스템 개발자 모집', 1),
('SK하이닉스', '경기도 이천시 부발읍 경충대로 2091', '반도체 공정 엔지니어 채용', 1),
('SK하이닉스', '경기도 이천시 부발읍 경충대로 2091', '데이터센터 솔루션 아키텍트 모집', 1);
4. ERD 다이어그램