|
|
@@ -20,6 +20,13 @@ public class InsAreaCompanyController {
|
|
|
|
|
|
private final InsAreaCompanyService insAreaCompanyService;
|
|
|
|
|
|
+ @GetMapping("/statusInquiry/{subOrderNo}")
|
|
|
+ @ApiOperation("状态查询")
|
|
|
+ public HttpResult<String> statusInquiry(@PathVariable String subOrderNo) {
|
|
|
+ InsAreaCompany insAreaCompany = insAreaCompanyService.getByIdIsExist(subOrderNo);
|
|
|
+ return HttpResult.ok(insAreaCompany.getOrderstatus());
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping("/close/{subOrderNo}")
|
|
|
@ApiOperation("关闭订单")
|
|
|
public HttpResult<String> close(@PathVariable String subOrderNo) {
|