package com.ydtech.modules.protocols.service; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.IService; import com.ydtech.modules.protocols.entity.po.PtlAgreementUndwrtRulesAttr; import com.ydtech.modules.protocols.entity.po.PtlAgreementUndwrtRulesNewHistory; import com.ydtech.modules.protocols.entity.vo.AgreementUndwrtRulesQueryVo; import java.util.HashMap; import java.util.List; /** *@author: *@description: *@create: */ public interface PtlAgreementUndwrtRulesNewHistoryService extends IService { Page pageHistory(AgreementUndwrtRulesQueryVo agreementUndwrtRulesQueryVo, List undwrtRulesAttrList); HashMap getRulesHistoryDetail(String batchNo); HashMap rulesComparison(String batchNo); }