| | |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.ibatis.annotations.Options; |
| | | import org.apache.poi.ss.usermodel.Cell; |
| | | import org.apache.poi.ss.usermodel.Row; |
| | | import org.apache.poi.ss.usermodel.Sheet; |
| | | import org.apache.poi.ss.usermodel.Workbook; |
| | | import org.apache.poi.xssf.usermodel.XSSFWorkbook; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.jdbc.datasource.DataSourceTransactionManager; |
| | | import org.springframework.transaction.TransactionDefinition; |
| | |
| | | |
| | | return AjaxResult.success(dataMap); |
| | | } |
| | | |
| | | /** |
| | | * 导出专家报销费用汇总 |
| | | */ |
| | | @ApiOperation("导出专家报销费用汇总") |
| | | @Log(title = "费用申请主", businessType = BusinessType.EXPORT) |
| | | @GetMapping("/exportFeeSum/{faxId}") |
| | | public Map<String, Object> exportFeeSum(@PathVariable Integer faxId) { |
| | | Map<String, Object> map = serviceFundService.exportFeeSum(faxId); |
| | | return map; |
| | | } |
| | | |
| | | } |