提交 e4f509bc authored 作者: 艾庆国's avatar 艾庆国

测试

上级 57e835e9
......@@ -9,6 +9,7 @@ import com.clx.performance.feign.TransportFeignService;
import com.clx.performance.listener.OrderChildDtsListener;
import com.clx.performance.service.TempService;
import com.clx.performance.service.child.FeignOrderChildService;
import com.clx.performance.service.child.OrderChildPostService;
import com.msl.common.result.Result;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
......@@ -50,7 +51,8 @@ public class TempController {
private ClxMessageConfig clxMessageConfig;
@Autowired
private ClxMessageOpenapiFeign clxMessageOpenapiFeign;
@Autowired
private OrderChildPostService orderChildPostService;
@ApiOperation(value = "test", notes = "<br>By:艾庆国")
@RequestMapping(value = "/test", method = RequestMethod.POST)
......@@ -77,6 +79,13 @@ public class TempController {
return Result.ok();
}
@ApiOperation(value = "orderChildAdd", notes = "<br>By:艾庆国")
@RequestMapping(value = "/orderChildAdd", method = RequestMethod.POST)
public Result orderChildAdd( String mobile, String warnName, String truckNo, String childNo) {
orderChildPostService.orderChildAdd("123");
return Result.ok();
}
// @ApiOperation(value = "更新网运标识", notes = "<br>By:艾庆国")
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论