gongchunyi
6 天以前 ad45ebdf25cae54a3950bba33aa767fc7a8a43d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.account.service;
 
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ruoyi.account.bean.dto.AccountReportDto;
import com.ruoyi.account.bean.vo.AccountReportVo;
import com.ruoyi.framework.web.domain.AjaxResult;
 
public interface AccountingService {
 
    AjaxResult total(Integer year);
 
    AjaxResult deviceTypeDistribution(Integer year);
 
    AjaxResult calculateDepreciation(Page page, Integer year);
 
    AccountReportVo getAccountStatementDetailsByMonth(AccountReportDto accountReportDto);
 
}