Skip to content

kimyongjun0129/schedule_web_project

Repository files navigation

API 명세서

Aa 기능 Method URL request response 상태코드
스케쥴 등록 POST /api/schedules 요청 body 등록 정보 200:정상등록
스케쥴 조회 GET /api/schedules/{scheduleID} 요청 Param 단건 응답 정보 200:정상조회
스케쥴 목록 조회 GET /api/schedules 요청 Param 다건 응답 정보 200:정상조회
스케쥴 수정 PUT /api/schedules/{scheduleID} 요청 body 수정 정보 200:정상수정
스케쥴 삭제 DELETE /api/schedules/{scheduleID} 요청 Param - 200:정상삭제

자세한 API : https://documenter.getpostman.com/view/44634184/2sB2qUmQAc


ERD

erDiagram
    USER ||--o{ SCHEDULE : contains
    USER {
        bigInt userId PK
        varchar(100) email
        varchar(100) userName
        datetime createAt
        dateTime updateAt
    }
    SCHEDULE {
        bigInt scheduledId PK
        bigInt userId FK
        bigInt password
        varchar(100) userName
        varchar(100) toDoContent
        datetime createAt
        datetime updateAt
    }
Loading

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages