Commit 0889c24e1d3cb16e87138e0c769a22e13c02f1cc
Merge branch 'dev'
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/cnlive/shenhe/job/LiveApplyJob.java
| ... | ... | @@ -111,6 +111,7 @@ public class LiveApplyJob { |
| 111 | 111 | if (CommonUtils.isNotNull(shySites)) { |
| 112 | 112 | liveApply.setSpid_desc(shySites.getName()); |
| 113 | 113 | } |
| 114 | + int i = 0; | |
| 114 | 115 | //循环需要发送邮件的邮箱 |
| 115 | 116 | for (ShyEmail shyEmail : shyEmailList) { |
| 116 | 117 | String startTime = CommonUtils.formatDate(liveApply.getPre_start_time(), "yyyy-MM-dd HH:mm:ss"); |
| ... | ... | @@ -130,7 +131,6 @@ public class LiveApplyJob { |
| 130 | 131 | emailparams.put("sign", OpenUtil.sign(emailparams, appKey)); |
| 131 | 132 | HttpUtil httpUtil = HttpUtil.init(); |
| 132 | 133 | httpUtil.setParamMap(emailparams); |
| 133 | - int i = 0; | |
| 134 | 134 | try { |
| 135 | 135 | Map<String, String> post = httpUtil.post(url); |
| 136 | 136 | logger.info("当前发送邮件用户为:" + emailAddr + ",发送邮件的直播申请审核云id为:" + liveApply.getId() + "结果为:" + post.get("result")); | ... | ... |