zss
2025-08-08 2253780a50fa53f1bc7d9f327a1edfed98f79fae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.account.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.account.dto.AccountDto3;
import com.ruoyi.account.pojo.AccountFile;
import com.ruoyi.account.pojo.AccountIncome;
 
import javax.servlet.http.HttpServletResponse;
 
public interface AccountIncomeService extends IService<AccountIncome> {
 
 
    IPage<AccountIncome> accountIncomeListPage(Page page, AccountIncome accountIncome);
 
    void accountIncomeExport(HttpServletResponse response, AccountIncome accountIncome);
 
    AccountDto3 reportIncome();
}