| | |
| | | package com.java110.order.api; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.core.trace.Java110TraceLog; |
| | | import com.java110.entity.order.Orders; |
| | | import com.java110.order.smo.IOrderProcessServiceSMO; |
| | | import com.java110.utils.constant.ResponseConstant; |
| | |
| | | @RequestMapping(path = "/service", method = RequestMethod.POST) |
| | | @ApiOperation(value = "中心服务订单受理", notes = "test: 返回 200 表示服务受理成功,其他表示失败") |
| | | @ApiImplicitParam(paramType = "query", name = "orderInfo", value = "订单受理信息", required = true, dataType = "String") |
| | | @Java110TraceLog |
| | | public ResponseEntity<String> servicePost(@RequestBody String orderInfo, HttpServletRequest request) { |
| | | |
| | | ResponseEntity<String> responseEntity = null; |