feat: 운영자 계정 CRUD API 구현 (#42) #43
No reviewers
SPMS/Owners
Labels
No Label
Priority
High
Priority
Low
Priority
Medium
Priority
Non
Priority
Urgent
Status
Available
Status
Done
Status
In Progress
Type
Bug
Type
Chore
Type
Design
Type
Documentation
Type
Feature
Type
Improvement
Type
Refactor
Type
Research
Type
Task
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: SPMS/SPMS_API#43
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "feature/#42-account-crud"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 작업 요약
Super Admin이 운영자(Manager/User) 계정을 생성, 조회, 수정, 삭제할 수 있는 API를 구현했습니다.
🔗 관련 이슈 (Related Issues)
Closes #42
🛠️ 작업 내용 (Changes)
Application Layer
CreateAccountRequestDto- 운영자 생성 요청 DTOUpdateAccountRequestDto- 운영자 수정 요청 DTOAccountResponseDto- 운영자 응답 DTOAccountListRequestDto- 목록 조회 요청 DTO (페이징, 검색, 필터)AccountListResponseDto- 목록 조회 응답 DTOIAccountService- 계정 서비스 인터페이스AccountService- 비즈니스 로직 구현API Layer
AccountController- 5개 엔드포인트POST /v1/in/account/create- 운영자 생성POST /v1/in/account/list- 운영자 목록 조회POST /v1/in/account/{adminCode}- 운영자 상세 조회POST /v1/in/account/{adminCode}/update- 운영자 수정POST /v1/in/account/{adminCode}/delete- 운영자 삭제Domain Layer
ErrorCodes.Forbidden(108) 추가📢 리뷰어 참고 사항 (To Reviewers)
[Authorize(Roles = "Super")]적용으로 Super Admin만 접근 가능✅ 체크리스트 (Self Checklist)
📸 스크린샷 / 테스트 로그 (Screenshots/Logs)