|
@@ -0,0 +1,37 @@
|
|
|
|
+package com.fire.getorder.rest;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+import com.fire.dto.response.BaseRestResponse;
|
|
|
|
+import io.swagger.annotations.Api;
|
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
+
|
|
|
|
+import java.util.Map;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+@Api(tags = "客户获取订单信息")
|
|
|
|
+@RestController
|
|
|
|
+@RequestMapping("/gateway")
|
|
|
|
+public class GetOrderRest {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 订单查询
|
|
|
|
+ *
|
|
|
|
+ * @param msg 下单参数
|
|
|
|
+ * @return OrderSearchResponse( 下单响应对象
|
|
|
|
+ */
|
|
|
|
+ @PostMapping("/flowservice/queryorder.ws")
|
|
|
|
+ @ApiOperation(value = "订单信息", notes = "order_search.py")
|
|
|
|
+ public void orderSearch(@RequestBody String msg) {
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+}
|