-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
User Table
| 컬럼명 | 자료형 | null |
|---|---|---|
| user_no | INT | primary key |
| user_email | varchar(50) | false |
| user_pw | varchar(20) | false |
| user_name | varchar(20) | false |
| rolling_paper_rolling_paper_no | INT | false, fk |
구현할 것
- @PostMapping("api/user")
- addUser(), save()
- @GetMapping("api/user")
- findUser(), findById()
- @PutMapping("api/user/{id}")
- updateUser(), update()
- @DeleteMapping("api/user/{id}")
- deleteUser(), delete()