Commit aceb37d7 authored by luzhuang's avatar luzhuang

json

parent 3b3692ab
......@@ -3,6 +3,7 @@ package org.rcisoft.common.util.feignClient;
import org.rcisoft.core.result.Ret;
import org.rcisoft.common.util.feignDto.*;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.http.MediaType;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.*;
......@@ -65,7 +66,7 @@ public interface ContactFeignClient {
/**
* 根据用户id获取用户信息(多个)
*/
@RequestMapping(value = "/account/get_user_head",method = RequestMethod.POST)
@RequestMapping(value = "/account/get_user_head",method = RequestMethod.POST,consumes = MediaType.APPLICATION_JSON_VALUE)
Ret<List<MTAccountIdRspDTO>> accountGetUserHead(@RequestBody MTUserGetsAccountReqDTO mtUserGetsReqDTO,
@RequestParam("zxClientType") String zxClientType,
@RequestParam("zxAccountId") Long zxAccountId);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment