| | |
| | | /*****************************************财务报表******************************************************************************/ |
| | | |
| | | @GetMapping("/accountStatementDetailsByMonth") |
| | | @Log(title = "统计总应收+总支出+总收入笔数+总支出笔数+净收入", businessType = BusinessType.OTHER) |
| | | @Operation(summary = "财务报表--统计总应收+总支出+总收入笔数+总支出笔数+净收入") |
| | | @Log(title = "财务报表", businessType = BusinessType.OTHER) |
| | | @Operation(summary = "财务报表") |
| | | public R getAccountStatementDetailsByMonth(AccountReportDto accountReportDto) { |
| | | return R.ok(accountingService.getAccountStatementDetailsByMonth(accountReportDto)); |
| | | } |