|
@@ -123,4 +123,14 @@ public class LoanApplicationController extends BaseController {
|
|
public AjaxResult sh(@RequestBody ReviewComments reviewComments) {
|
|
public AjaxResult sh(@RequestBody ReviewComments reviewComments) {
|
|
return loanApplicationService.sh(reviewComments);
|
|
return loanApplicationService.sh(reviewComments);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 导出模板附件
|
|
|
|
+ */
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('system:export:mb')")
|
|
|
|
+ @Log(title = "导出模板附件", businessType = BusinessType.DELETE)
|
|
|
|
+ @GetMapping("/export/mb")
|
|
|
|
+ public AjaxResult exportMb(String type,LoanApplication loanApplication) {
|
|
|
|
+ return loanApplicationService.exportMb(type,loanApplication);
|
|
|
|
+ }
|
|
}
|
|
}
|