[회원 관리 기능 개선 및 MapStruct 도입] - 회원 엔티티 및 DTO 구조 변경, MapStruct를 통한 변환 로직 추가, 사용자 ID 중복 체크 기능 구현, README 업데이트, Gradle 의존성 수정

This commit is contained in:
2025-08-12 15:00:12 +09:00
parent 2ff5a02906
commit c50e8d835b
27 changed files with 429 additions and 387 deletions

View File

@@ -1,11 +1,13 @@
create table member (
status varchar(1) not null,
create table st_member (
use_flag boolean not null,
created_at timestamp(6) not null,
created_oid bigint,
last_login_at timestamp(6),
oid bigint not null,
updated_at timestamp(6) not null,
role varchar(40) not null,
updated_oid bigint,
role varchar(40) not null check (role in ('MEMBER','ADMIN','USER','SYSTEM_ADMIN')),
password varchar(100) not null,
user_id varchar(100) not null,
refresh_token varchar(200),