huminmin
7 天以前 be3496a35eb61769776e0e2c57087510e99f0e97
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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.bean.dto.StatementAccountDto;
import com.ruoyi.account.bean.vo.StatementAccountVo;
import com.ruoyi.account.pojo.AccountStatement;
import jakarta.servlet.http.HttpServletResponse;
 
import java.util.List;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2026-05-19 09:42:47
 */
public interface AccountStatementService extends IService<AccountStatement> {
 
    StatementAccountVo getAccountStatementDetailsByMonth(StatementAccountDto statementAccountDto);
 
    boolean addAccountStatement(StatementAccountVo statementAccountVo);
 
    boolean deleteAccountStatement(List<Long> ids);
 
    IPage<StatementAccountVo> listPageAccountStatement(Page page, StatementAccountDto statementAccountDto);
 
    void exportAccountStatement(HttpServletResponse response, StatementAccountDto statementAccountDto);
}