package com.stylefeng.guns.modular.system.dao;
|
|
import com.baomidou.mybatisplus.plugins.Page;
|
import com.stylefeng.guns.modular.system.model.TInvoice;
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* <p>
|
* 发票 Mapper 接口
|
* </p>
|
*
|
* @author 吕雪
|
* @since 2020-06-09
|
*/
|
public interface TInvoiceMapper extends BaseMapper<TInvoice> {
|
|
/**
|
* 根据条件查询用开发票记录列表
|
* @return
|
*/
|
List<Map<String,Object>> getInvoiceList(@Param("page") Page<Map<String, Object>> page,
|
@Param("beginTime") String beginTime,
|
@Param("endTime") String endTime,
|
@Param("email") String email,
|
@Param("name") String name,
|
@Param("type") Integer type,
|
@Param("state") Integer state);
|
}
|