Commit fb729edd1cdd116ea874cdad1e369648b2461ef1

Authored by 徐近程
1 parent ec0cf505

update

src/main/java/com/cnlive/shenhe/utils/YiDunAntiFraudUtil.java
... ... @@ -201,6 +201,7 @@ public class YiDunAntiFraudUtil {
201 201 int count = 0;
202 202 if (code == 200 && "ok".equals(msg)) {
203 203 StringBuffer strBuffer = new StringBuffer();
  204 + strBuffer.append("易盾图片审核");
204 205 JSONArray antispam = jsonResult.getJSONArray("antispam");
205 206 if (antispam != null && antispam.size() > 0) {
206 207 for (int i = 0; i < antispam.size(); i++) {
... ... @@ -230,7 +231,7 @@ public class YiDunAntiFraudUtil {
230 231 jsonObj.put("desc", strBuffer);
231 232 } else {
232 233 jsonObj.put("type", "PASS");
233   - jsonObj.put("desc", "易盾审核通过");
  234 + jsonObj.put("desc", "易盾图片审核通过");
234 235 }
235 236 logger.info("审核云图片识别处理后结果:{}", jsonObj.toString());
236 237 return jsonObj;
... ...