회원상세 추천아이디/이름 추가
@6045d5602309834a2e108d7fa806718b9a69ff93
--- src/main/java/itn/let/uss/umt/service/UserManageVO.java
+++ src/main/java/itn/let/uss/umt/service/UserManageVO.java
... | ... | @@ -202,6 +202,21 @@ |
| 202 | 202 |
private String smishingYn; // 스미싱 의심여부 |
| 203 | 203 |
private String vipYn; // VIP 여부 |
| 204 | 204 |
private float cash; |
| 205 |
+ private String blineCode; // B라인코드 |
|
| 206 |
+ private String recommendId; // 추천아이디 |
|
| 207 |
+ |
|
| 208 |
+ public String getBlineCode() {
|
|
| 209 |
+ return blineCode; |
|
| 210 |
+ } |
|
| 211 |
+ public void setBlineCode(String blineCode) {
|
|
| 212 |
+ this.blineCode = blineCode; |
|
| 213 |
+ } |
|
| 214 |
+ public String getRecommendId() {
|
|
| 215 |
+ return recommendId; |
|
| 216 |
+ } |
|
| 217 |
+ public void setRecommendId(String recommendId) {
|
|
| 218 |
+ this.recommendId = recommendId; |
|
| 219 |
+ } |
|
| 205 | 220 |
|
| 206 | 221 |
public float getCash() {
|
| 207 | 222 |
return cash; |
--- src/main/java/itn/let/uss/umt/web/EgovUserManageController.java
+++ src/main/java/itn/let/uss/umt/web/EgovUserManageController.java
... | ... | @@ -976,6 +976,8 @@ |
| 976 | 976 |
mberManageVO.setAdminSmsNoticeYn(userManageVO.getAdminSmsNoticeYn()); |
| 977 | 977 |
mberManageVO.setPrePaymentYn(userManageVO.getPrePaymentYn()); |
| 978 | 978 |
mberManageVO.setAutoCash(userManageVO.getAutoCash()); |
| 979 |
+ mberManageVO.setBlineCode(userManageVO.getBlineCode()); |
|
| 980 |
+ mberManageVO.setRecommendId(userManageVO.getRecommendId()); |
|
| 979 | 981 |
|
| 980 | 982 |
String userId = mberManageVO.getMberId(); |
| 981 | 983 |
UserLogVO userLogVO = new UserLogVO(); |
--- src/main/resources/egovframework/sqlmap/let/uss/umt/EgovUserManage_SQL_Mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/uss/umt/EgovUserManage_SQL_Mysql.xml
... | ... | @@ -1290,11 +1290,13 @@ |
| 1290 | 1290 |
</select> |
| 1291 | 1291 |
|
| 1292 | 1292 |
<select id="userManageDAO.selectAdminSmsNoticeYn" parameterClass="userVO" resultClass="userVO"> |
| 1293 |
- SELECT |
|
| 1293 |
+ SELECT |
|
| 1294 | 1294 |
ADMIN_SMS_NOTICE_YN AS adminSmsNoticeYn, |
| 1295 | 1295 |
PRE_PAYMENT_YN AS prePaymentYn, |
| 1296 | 1296 |
SMISHING_YN AS smishingYn, |
| 1297 |
- AUTO_CASH AS autoCash |
|
| 1297 |
+ AUTO_CASH AS autoCash, |
|
| 1298 |
+ IFNULL(BLINE_CODE, 'N') AS blineCode, |
|
| 1299 |
+ IFNULL(RECOMMEND_ID, '') AS recommendId |
|
| 1298 | 1300 |
FROM LETTNGNRLMBER |
| 1299 | 1301 |
WHERE MBER_ID = #mberId# |
| 1300 | 1302 |
</select> |
--- src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp
+++ src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp
... | ... | @@ -2553,8 +2553,8 @@ |
| 2553 | 2553 |
</c:forEach> |
| 2554 | 2554 |
</select> |
| 2555 | 2555 |
</td> |
| 2556 |
- <th></th> |
|
| 2557 |
- <td></td> |
|
| 2556 |
+ <th><c:if test="${mberManageVO.blineCode != 'N'}">추천아이디/이름</c:if></th>
|
|
| 2557 |
+ <td><c:if test="${mberManageVO.blineCode != 'N'}"><c:out value='${mberManageVO.recommendId}'/></c:if></td>
|
|
| 2558 | 2558 |
</tr> |
| 2559 | 2559 |
<c:if test="${not empty resultSpamMberInfo && mberManageVO.mberSttus == 'B'}">
|
| 2560 | 2560 |
<tr> |
... | ... | @@ -2979,8 +2979,8 @@ |
| 2979 | 2979 |
</c:forEach> |
| 2980 | 2980 |
</select> |
| 2981 | 2981 |
</td> |
| 2982 |
- <th></th> |
|
| 2983 |
- <td></td> |
|
| 2982 |
+ <th><c:if test="${mberManageVO.blineCode != 'N'}">추천아이디/이름</c:if></th>
|
|
| 2983 |
+ <td><c:if test="${mberManageVO.blineCode != 'N'}"><c:out value='${mberManageVO.recommendId}'/></c:if></td>
|
|
| 2984 | 2984 |
</tr> |
| 2985 | 2985 |
<tr> |
| 2986 | 2986 |
<th>전화번호<button type="button" onclick="layerPopOpen('sms');">SMS</button></th>
|
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?