[api] 회원 목록 & 수정 & 상세 추가 / 각 vo dto contorller schema 추가

This commit is contained in:
2026-05-19 16:17:05 +09:00
parent 4cc6078484
commit d5483b790d
65 changed files with 1190 additions and 25 deletions
@@ -26,10 +26,10 @@
UPDATE ALISTLMS.test_user ATU
INNER JOIN ALISTLMS.test_user_token ATUT ON ATUT.user_idx = ATU.user_idx
SET ATU.update_at = now()
<if test="email != null">
<if test="email != null and email != ''">
, ATU.email = #{email}
</if>
<if test="hp != null">
<if test="hp != null and hp != ''">
, ATU.hp = #{hp}
</if>
WHERE ATUT.user_token_idx = #{userTokenIdx}