package com.ruoyi.other.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.common.core.web.page.PageInfo;
|
import com.ruoyi.other.api.domain.TInvoiceType;
|
import com.ruoyi.other.query.InvoiceTypePageList;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* Mapper 接口
|
* </p>
|
*
|
* @author 无关风月
|
* @since 2024-08-06
|
*/
|
public interface TInvoiceTypeMapper extends BaseMapper<TInvoiceType> {
|
|
|
List<TInvoiceType> pageList(PageInfo<TInvoiceType> pageInfo, @Param("req") InvoiceTypePageList pageList);
|
}
|