|  |  | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 导出来票登记列表 | 
 |  |  |      */ | 
 |  |  |     @Log(title = "导出来票登记列表", businessType = BusinessType.EXPORT) | 
 |  |  |     @PostMapping("/exportOne") | 
 |  |  |     public void exportOne(HttpServletResponse response, PurchaseLedger purchaseLedger) { | 
 |  |  |         Page page = new Page(); | 
 |  |  |         page.setCurrent(-1); | 
 |  |  |         page.setSize(-1); | 
 |  |  |         IPage<PurchaseLedgerDto> purchaseLedgerDtoIPage = purchaseLedgerService.selectPurchaseLedgerListPage(page, new PurchaseLedgerDto()); | 
 |  |  |         ExcelUtil<PurchaseLedgerDto> util = new ExcelUtil<PurchaseLedgerDto>(PurchaseLedgerDto.class); | 
 |  |  |         util.exportExcel(response, purchaseLedgerDtoIPage.getRecords(), "导出来票登记列表"); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 新增修改采购台账 | 
 |  |  |      */ | 
 |  |  |     @Log(title = "采购台账", businessType = BusinessType.INSERT) |