--- src/main/java/itn/let/mjo/msgdata/service/impl/MjonMsgDataServiceImpl.java
+++ src/main/java/itn/let/mjo/msgdata/service/impl/MjonMsgDataServiceImpl.java
... | ... | @@ -70,6 +70,7 @@ |
| 70 | 70 |
import itn.let.uss.umt.service.EgovUserManageService; |
| 71 | 71 |
import itn.let.uss.umt.service.MberManageVO; |
| 72 | 72 |
import itn.let.uss.umt.service.UserManageVO; |
| 73 |
+import itn.let.uss.umt.service.impl.UserManageDAO; |
|
| 73 | 74 |
import lombok.extern.slf4j.Slf4j; |
| 74 | 75 |
|
| 75 | 76 |
@Slf4j |
... | ... | @@ -140,6 +141,10 @@ |
| 140 | 141 |
|
| 141 | 142 |
@Resource(name = "MsgHolidayService") |
| 142 | 143 |
private MsgHolidayService msgHolidayService; |
| 144 |
+ |
|
| 145 |
+ /** userManageDAO */ |
|
| 146 |
+ @Resource(name = "userManageDAO") |
|
| 147 |
+ private UserManageDAO userManageDAO; |
|
| 143 | 148 |
|
| 144 | 149 |
@Autowired |
| 145 | 150 |
private PriceAndPoint priceAndPoint; |
... | ... | @@ -4042,8 +4047,14 @@ |
| 4042 | 4047 |
|
| 4043 | 4048 |
mjonMsgVO.setAgentCode(hotlineAgentCode); |
| 4044 | 4049 |
|
| 4045 |
- |
|
| 4050 |
+ UserManageVO p_userManageVO = new UserManageVO(); |
|
| 4051 |
+ p_userManageVO.setMberId(userId); |
|
| 4052 |
+ UserManageVO UserManageVO = userManageDAO.selectAdminSmsNoticeYn(p_userManageVO); |
|
| 4046 | 4053 |
|
| 4054 |
+ if ("Y".equalsIgnoreCase(UserManageVO.getSmishingYn())) {
|
|
| 4055 |
+ mjonMsgVO.setDelayYn(UserManageVO.getSmishingYn()); |
|
| 4056 |
+ } |
|
| 4057 |
+ |
|
| 4047 | 4058 |
// UserManageVO userManageVO = MjonCommon.getUserManageInfo(userId); |
| 4048 | 4059 |
|
| 4049 | 4060 |
|
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?