|
@@ -7,10 +7,7 @@ import com.usky.common.log.enums.BusinessType;
|
|
|
import com.usky.fire.domain.MhPostInspect;
|
|
|
import com.usky.fire.service.MhPostInspectService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.web.bind.annotation.PutMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -39,5 +36,12 @@ public class MhPostInspectController {
|
|
|
return ApiResult.success(mhPostInspectService.postInspectPush(mhPostInspect));
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @GetMapping("postInspectAnswerRequest")
|
|
|
+ public ApiResult<Void> postInspectAnswerRequest() {
|
|
|
+ mhPostInspectService.postInspectAnswerRequest();
|
|
|
+ return ApiResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|