Skip to content

KimDohwan24/Scheduler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

API 명세서 작성

기능 Method URL request 상태코드
스케줄 생성 POST /schudules 요청 body 200 : 정상 등록
스케줄 전체 조회 GET /schedules/{scheduleId} 요청 param 200 : 정상 등록
404 : NOT_FOUND
스케줄 단건 조회 GET /schedules/{scheduleId} 요청 param 200 : 정상 등록
404 : NOT_FOUND
스케줄 수정 PUT /schedules/{scheduleId} 요청 body 200 : 정상 등록
404 : NOT_FOUND
400 비밀번호 오류
스케줄 삭제 DELETE /schedules/{scheduleId} 요청 param 200 : 정상 등록
404 : NOT_FOUND
400 비밀번호 오류

ERD

Column Name Type Description
scheduleId BIGINT Primary Key, Auto Increment
createdAt TIMESTAMP 생성 시각
updatedAt TIMESTAMP 수정 시각
title VARCHAR(50) 제목
contents TEXT 내용
password TEXT 비밀번호

SQL문

create table schedule(
    scheduleId BIGINT AUTO_INCREMENT PRIMARY KEY,
    createdAt TIMESTAMP,
    updatedAt TIMESTAMP,
    title VARCHAR(50),
    contents TEXT,
    password TEXT
)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages