PtlAgreementUndwrtRulesAttrService.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.ydtech.modules.protocols.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.ydtech.core.page.HttpResult;
  4. import com.ydtech.core.page.PageResult;
  5. import com.ydtech.modules.esm.model.EsmInsCompany;
  6. import com.ydtech.modules.protocol.entity.dto.PtlAgreementAttributionDto;
  7. import com.ydtech.modules.protocol.entity.dto.PtlAgreementInsCompanyDto;
  8. import com.ydtech.modules.protocol.entity.dto.PtlAgreementSaveDto;
  9. import com.ydtech.modules.protocol.entity.po.PtlAgreement;
  10. import com.ydtech.modules.protocol.entity.po.PtlAgreementProductCosts;
  11. import com.ydtech.modules.protocol.entity.po.PtlAgreementUndwrtRules;
  12. import com.ydtech.modules.protocol.entity.vo.*;
  13. import com.ydtech.modules.protocols.entity.po.PtlAgreementUndwrtRulesAttr;
  14. import com.ydtech.modules.protocols.entity.vo.AgreementProductCosts;
  15. import java.util.List;
  16. import java.util.Map;
  17. /**
  18. *@author: tz
  19. *@description: 协议承保规则属性 service
  20. *@create: 2024-2-22 15:44:29
  21. */
  22. public interface PtlAgreementUndwrtRulesAttrService extends IService<PtlAgreementUndwrtRulesAttr> {
  23. /**
  24. * 协议承保规则属性列表
  25. * @return
  26. */
  27. List<PtlAgreementUndwrtRulesAttr> getUndwrtRulesAttrList();
  28. /**
  29. * 协议承保规则属性列表
  30. * @return
  31. */
  32. List<PtlAgreementUndwrtRulesAttr> getUndwrtRulesAttrList(String companyId);
  33. /**
  34. * 协议承保规则属性列表进行分类
  35. * @return
  36. */
  37. Map<String,List<PtlAgreementUndwrtRulesAttr>> getUndwrtRulesAttrListType(List<PtlAgreementUndwrtRulesAttr> undwrtRulesAttrList);
  38. }