Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/oh-dab/server-api


https://github.com/oh-dab/server-api

domain-driven-development githubactions-ci java11 junit5-tests mybatis restful-api spring-boot spring-data-jpa spring-rest-docs

Last synced: about 17 hours ago
JSON representation

Awesome Lists containing this project

README

        


Oh!Dab


수학학원 학생들의 오답관리 서비스










## Activity

![Alt](https://repobeats.axiom.co/api/embed/b57f402847a7063c4a1e2420951848e40a4741ea.svg "Repobeats analytics image")

## API 명세서
- [**명세서**](https://oh-dab.github.io/server-api/index.html)

## ERD 다이어그램
```mermaid
classDiagram
direction BT
class CLASSROOM {
datetime(6) created_at
datetime(6) updated_at
varchar(255) classroomInfo_description
int classroomInfo_grade
varchar(255) classroomInfo_name
bigint teacher_id
bigint classroom_id
}
class MEMBER {
datetime(6) created_at
datetime(6) updated_at
varchar(255) member_name
varchar(255) member_password
varchar(255) status
bigint member_id
}
class MEMBER_AUTHORITY {
bigint member_id
varchar(255) authorities_role
}
class MISTAKENOTE {
datetime(6) created_at
datetime(6) updated_at
bigint student_id
bigint workbook_id
bigint mistakenote_id
}
class MISTAKE_RECORD {
int count
bigint mistakenote_id
int problem_number
}
class STUDENT_LIST {
bigint classroom_id
bigint students_id
}
class WORKBOOK {
datetime(6) created_at
datetime(6) updated_at
bigint classroom_teacher_id
varchar(255) workbook_description
int workbook_ending_number
varchar(255) workbook_name
int workbook_starting_number
bigint workbook_id
}
class WORKBOOK_LIST {
bigint classroom_id
bigint workbooks_id
}
class hibernate_sequence {
bigint next_val
}

MEMBER_AUTHORITY --> MEMBER : member_id
MISTAKE_RECORD --> MISTAKENOTE : mistakenote_id
STUDENT_LIST --> CLASSROOM : classroom_id
WORKBOOK_LIST --> CLASSROOM : classroom_id
```

## 팀원








심종한
이예린
황성하