This commit is contained in:
parent
c73bd6459c
commit
a0cac0b987
@ -47,6 +47,7 @@ public class MemberVo {
|
|||||||
private String isLea; // 휴직여부
|
private String isLea; // 휴직여부
|
||||||
private int color; // 색상
|
private int color; // 색상
|
||||||
private int mbit; // MBTI
|
private int mbit; // MBTI
|
||||||
|
private String usercolor; // usercolor
|
||||||
private Boolean remember; // 로그인 유지
|
private Boolean remember; // 로그인 유지
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -26,8 +26,13 @@
|
|||||||
, MEMBERLEA AS isLea
|
, MEMBERLEA AS isLea
|
||||||
, MEMBERCOL AS color
|
, MEMBERCOL AS color
|
||||||
, MEMBERMBT AS mbit
|
, MEMBERMBT AS mbit
|
||||||
|
, c.CMNCODNAM usercolor
|
||||||
FROM
|
FROM
|
||||||
netmember
|
netmember m
|
||||||
|
left join
|
||||||
|
commoncod c
|
||||||
|
on
|
||||||
|
M.MEMBERCOL = C.CMNCODVAL
|
||||||
WHERE
|
WHERE
|
||||||
MEMBERIDS = #{id}
|
MEMBERIDS = #{id}
|
||||||
</select>
|
</select>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user