Commit 6e004f22 authored by LiuLin's avatar LiuLin

fix(ymt):申请单编码feign返回值修改

parent 417ce13b
...@@ -8,6 +8,7 @@ import org.springframework.web.bind.annotation.RequestMapping; ...@@ -8,6 +8,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RequestParam;
import org.typroject.tyboot.core.restful.utils.ResponseModel; import org.typroject.tyboot.core.restful.utils.ResponseModel;
import java.util.List;
import java.util.Map; import java.util.Map;
@FeignClient(name = "TZS-YMT", path = "/ymt", configuration = @FeignClient(name = "TZS-YMT", path = "/ymt", configuration =
...@@ -41,8 +42,8 @@ public interface TzsServiceFeignClient { ...@@ -41,8 +42,8 @@ public interface TzsServiceFeignClient {
* @return List * @return List
*/ */
@RequestMapping(value = "/generate-code/applicationFormCode", method = RequestMethod.POST) @RequestMapping(value = "/generate-code/applicationFormCode", method = RequestMethod.POST)
ResponseModel<Map<String, Object>> applicationFormCode(@RequestParam("type") String type, ResponseModel<List<String>> applicationFormCode(@RequestParam("type") String type,
@RequestParam("batchSize") int batchSize); @RequestParam("batchSize") int batchSize);
/** /**
* 生成设备注册编码 * 生成设备注册编码
......
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