|
|
@@ -10,6 +10,7 @@ import me.zhengjie.application.admin.service.AdminOrderService;
|
|
|
import me.zhengjie.base.AppBaseResponse;
|
|
|
import me.zhengjie.base.AppResultData;
|
|
|
import me.zhengjie.base.ResultCode;
|
|
|
+import me.zhengjie.base.util.FileUploadUtil;
|
|
|
import me.zhengjie.base.util.TencentServiceUtil;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
@@ -183,10 +184,15 @@ public class AdminOrderController {
|
|
|
}
|
|
|
|
|
|
@RequestMapping("/preview")
|
|
|
- public AppBaseResponse previewNotarization(@RequestBody NotaryOrderQueryReq req) {
|
|
|
+ public AppBaseResponse modifyNotarization(@RequestBody NotaryOrderQueryReq req) {
|
|
|
return adminOrderService.previewNotarization(req);
|
|
|
}
|
|
|
|
|
|
+ @RequestMapping("/preview-notarization")
|
|
|
+ public AppBaseResponse previewNotarization(@RequestBody NotaryOrderQueryReq req) {
|
|
|
+ return adminOrderService.previewNotarizationPdf(req);
|
|
|
+ }
|
|
|
+
|
|
|
@RequestMapping("/saveContent")
|
|
|
public AppBaseResponse saveContent(@RequestBody NotaryOrderQueryReq req) {
|
|
|
return adminOrderService.saveContent(req);
|