| 123456789101112131415161718192021222324252627282930 |
- 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 com.ydtech.modules.protocols.entity.po.PtlAgreementProductCostsNewHistory;
- import com.ydtech.modules.protocols.entity.vo.AgreementProductQueryVo;
- 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);
- Page<PtlAgreementProductCostsNewHistory> getCostHistoryDetail(Page page, AgreementProductQueryVo agreementProductQueryVo);
- }
|