| 12345678910111213141516171819202122232425 |
- package com.ydtech.modules.protocols.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.ydtech.modules.protocols.entity.po.PtlAgreementProductCostsAttrLink;
- import com.ydtech.modules.protocols.entity.po.PtlAgreementUndwrtRulesAttrLink;
- import java.util.List;
- /**
- * @author: tz
- * @description: 协议承保规则属性 service
- * @create: 2024-2-22 15:44:29
- */
- public interface PtlAgreementUndwrtRulesAttrLinkService extends IService<PtlAgreementUndwrtRulesAttrLink> {
- /**
- * 通过规则id列表获取 规则列表
- *
- * @param rulesId 规则id列表
- * @return 规则列表
- */
- default List<PtlAgreementUndwrtRulesAttrLink> getByRulesIdList(List<String> rulesId) {
- return lambdaQuery().in(PtlAgreementUndwrtRulesAttrLink::getRulesId, rulesId).list();
- }
- }
|