修改图片URL日志请求路径.

This commit is contained in:
zhangwenqing
2018-07-19 11:21:16 +08:00
parent 3c5b3cfea7
commit d83b77e27c
3 changed files with 15 additions and 15 deletions

View File

@@ -40,7 +40,7 @@ public class MmPicUrlController extends BaseController{
try {
// 请求接口
String url = Constants.LOG_BASE_URL + Constants.NTC_MMPICIP_LOG;
String url = Constants.LOG_BASE_URL + Constants.NTC_MMPICURL_LOG;
String resJson = HttpClientUtil.getMsg(url, params, request);
Gson gson = new GsonBuilder().create();
LogRecvData<MmPicUrlLog> fromJson = gson.fromJson(resJson, new TypeToken<LogRecvData<MmPicUrlLog>>() {}.getType());