| 12345678910111213141516171819202122232425 |
- package com.ydtech.modules.protocol.dao;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.ydtech.modules.protocol.entity.po.PtlAgreementHistory;
- import com.ydtech.modules.protocol.entity.vo.PtlAgreementProductQueryVo;
- import java.util.HashMap;
- import java.util.List;
- /**
- * @author wenks
- * @description 针对表【ptl_agreement(协议信息表)】的数据库操作Mapper
- * @createDate 2023-06-05 17:59:52
- * @Entity com.ydtech.modules.protocol.entity.po.PtlAgreement
- */
- public interface PtlAgreementHistoryMapper extends BaseMapper<PtlAgreementHistory> {
- Page<HashMap> pageHistory(Page page, PtlAgreementProductQueryVo vo);
- }
|