puzhibing
2023-05-22 e55987208ea639e33006e78146a47266a4b2ed6d
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
33
34
35
36
37
38
39
40
41
package com.stylefeng.guns.modular.system.service;
 
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.stylefeng.guns.modular.system.model.TBill;
import com.baomidou.mybatisplus.service.IService;
 
import java.util.List;
 
/**
 * <p>
 * 发票管理 服务类
 * </p>
 *
 * @author stylefeng
 * @since 2023-03-14
 */
public interface ITBillService extends IService<TBill> {
 
    /**
     * 获取发票wrapper
     * @param createTime
     * @param addresseePhone
     * @param state
     * @param billType
     * @param billHeaderType
     * @return
     */
    EntityWrapper<TBill> getPageListWrapper(String createTime, String addresseePhone, Integer state, Integer billType, Integer billHeaderType);
 
    /**
     * 获取列表
     * @param createTime
     * @param addresseePhone
     * @param state
     * @param billType
     * @param billHeaderType
     * @return
     */
    List<TBill> getPageList(String createTime, String addresseePhone, Integer state, Integer billType, Integer billHeaderType);
 
}