Commit 124894b560ad7f0cd5689d6db92f55524884fea2

Authored by 王言钊
1 parent 6fd683b5

调试bug7

src/main/java/com/cnlive/shenhe/job/YiDunUrlResultJob.java
... ... @@ -177,9 +177,9 @@ public class YiDunUrlResultJob {
177 177 shyContent.setShenhe_type(CommonConst.AUDIT_TYPE_USER);
178 178 //拒绝原因 3=拒审
179 179 shyContent.setReceive_status(3);
180   - shyContent.setShenhe_msg("易盾网站识别其它问题需排查");
  180 + shyContent.setShenhe_msg(desc);
181 181 shyContent.setContent_status(CommonConst.AUDIT_REFUSE);
182   - newYiDunMsg.setDesc_msg("易盾网站识别其它问题需排查");
  182 + newYiDunMsg.setDesc_msg(desc);
183 183 newYiDunMsg.setCheck_status(2);
184 184 //修改图文状态
185 185 contentServiceImpl.callback(yiDunMsg.getContent_id(), "机审审核拒绝", CommonConst.AUDIT_REFUSE, "", "机审");
... ...
src/main/java/com/cnlive/shenhe/serviceImpl/ContentServiceImpl.java
... ... @@ -299,10 +299,6 @@ public class ContentServiceImpl {
299 299 content.setReceive_status(CommonConst.RECEIVE_AUDIT);
300 300 // 设置审核消息
301 301 content.setShenhe_msg(msg);
302   - if (state.equals(CommonConst.AUDIT_REFUSE)) {
303   - // 设置审核类型为人工
304   - content.setShenhe_type(CommonConst.AUDIT_TYPE_USER);
305   - }
306 302 if (CommonUtils.isNotEmpty(userId)) {
307 303 content.setAuditor_id(userId);
308 304 // 设置审核类型为人工
... ...