package com.stylefeng.guns.modular.system.dao;
|
|
import com.stylefeng.guns.modular.system.model.TBill;
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 发票管理 Mapper 接口
|
* </p>
|
*
|
* @author stylefeng
|
* @since 2023-03-14
|
*/
|
@Mapper
|
public interface TBillMapper extends BaseMapper<TBill> {
|
|
/**
|
* 获取列表
|
* @param startTime
|
* @param endTime
|
* @param addresseePhone
|
* @param state
|
* @param billType
|
* @param billHeaderType
|
* @param roleType
|
* @param objectId
|
* @return
|
*/
|
List<TBill> getPageList(@Param("startTime") String startTime, @Param("endTime")String endTime, @Param("addresseePhone")String addresseePhone,
|
@Param("state")Integer state, @Param("billType")Integer billType, @Param("billHeaderType")Integer billHeaderType,
|
@Param("roleType")Integer roleType, @Param("objectId")Integer objectId);
|
|
}
|