usercolor 추가
All checks were successful
LOCALNET-DEV/pipeline/head This commit looks good

This commit is contained in:
yoon 2025-03-31 19:10:05 +09:00
parent c73bd6459c
commit a0cac0b987
2 changed files with 7 additions and 1 deletions

View File

@ -47,6 +47,7 @@ public class MemberVo {
private String isLea; // 휴직여부
private int color; // 색상
private int mbit; // MBTI
private String usercolor; // usercolor
private Boolean remember; // 로그인 유지
}

View File

@ -26,8 +26,13 @@
, MEMBERLEA AS isLea
, MEMBERCOL AS color
, MEMBERMBT AS mbit
, c.CMNCODNAM usercolor
FROM
netmember
netmember m
left join
commoncod c
on
M.MEMBERCOL = C.CMNCODVAL
WHERE
MEMBERIDS = #{id}
</select>