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