|
@@ -504,23 +504,4 @@ public class RestUtil {
|
|
|
}
|
|
|
return result.toJSONString();
|
|
|
}
|
|
|
-
|
|
|
- // 获取验证码
|
|
|
- public static String getCaptcha() {
|
|
|
- JSONObject result = new JSONObject();
|
|
|
- try {
|
|
|
- Tuple object = PersonUtil.getCaptcha();
|
|
|
- result.put("Content", object);
|
|
|
- result.put("Result", "success");
|
|
|
- } catch (Exception e) {
|
|
|
- log.error(e.getMessage(), e);
|
|
|
- String message = LogUtil.GetExceptionStackTrace(e);
|
|
|
- log.error(message);
|
|
|
- result.put("Result", "failure");
|
|
|
- result.put("ResultMsg", message);
|
|
|
- result.put("ResultCode", 250);
|
|
|
- }
|
|
|
- return result.toJSONString();
|
|
|
-
|
|
|
- }
|
|
|
}
|