PtlAgreementUndwrtRulesNewService.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package com.ydtech.modules.protocols.service;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import com.ydtech.core.page.PageRequest;
  5. import com.ydtech.core.page.PageResult;
  6. import com.ydtech.modules.protocols.entity.po.PtlAgreementProductCostsAttrLink;
  7. import com.ydtech.modules.protocols.entity.po.PtlAgreementUndwrtRulesAttr;
  8. import com.ydtech.modules.protocols.entity.po.PtlAgreementUndwrtRulesNew;
  9. import com.ydtech.modules.protocols.entity.vo.AgreementProductCosts;
  10. import com.ydtech.modules.protocols.entity.vo.AgreementProductCostsSave;
  11. import com.ydtech.modules.protocols.entity.vo.AgreementUndwrtRules;
  12. import com.ydtech.modules.protocols.entity.vo.AgreementUndwrtRulesSave;
  13. import java.util.List;
  14. /**
  15. *@author: tz
  16. *@description: 协议承保规则属性 service
  17. *@create: 2024-2-22 15:44:29
  18. */
  19. public interface PtlAgreementUndwrtRulesNewService extends IService<PtlAgreementUndwrtRulesNew> {
  20. AgreementUndwrtRulesSave rulesGet(String costsId, List<PtlAgreementUndwrtRulesAttr> undwrtRulesAttrList);
  21. List<PtlAgreementUndwrtRulesNew> rulesList(String agreementId);
  22. Page rulesPage(Page page,String agreementId);
  23. /**
  24. * 添加协议承保规则
  25. * @param agreementUndwrtRules
  26. * @return
  27. */
  28. boolean rulesAdd(AgreementUndwrtRules agreementUndwrtRules);
  29. /**
  30. * 更新协议承保规则
  31. * @param agreementUndwrtRules
  32. * @return
  33. */
  34. boolean rulesUpdate(AgreementUndwrtRules agreementUndwrtRules);
  35. boolean rulesDelete(String rulesId);
  36. }