package com.ydtech.modules.protocol.service; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.IService; import com.ydtech.modules.protocol.entity.dto.PtlAgreementUndwrtRulesSaveDto; import com.ydtech.modules.protocol.entity.dto.history.PtlAgreementUndwrtRulesHistory; import com.ydtech.modules.protocol.entity.po.PtlAgreementProductCostsHistory; import com.ydtech.modules.protocol.entity.po.PtlAgreementUndwrtRules; import com.ydtech.modules.protocol.entity.vo.PtlAgreementProductQueryVo; import com.ydtech.modules.protocol.entity.vo.PtlAgreementUndwrtRulesQueryVo; import java.util.List; import java.util.Map; /** * @author CXP * @description 针对表【ptl_agreement_undwrt_rules(协议承保规则)】的数据库操作Service * @createDate 2023年12月20日22:26:17 */ public interface PtlAgreementUndwrtRulesHistoryService extends IService { Page pageHistory(Page page, PtlAgreementUndwrtRulesQueryVo ptlAgreementUndwrtRulesQueryVo); }