PtlAgreementDispatchRulesDictService.java 607 B

12345678910111213141516171819202122
  1. package com.ydtech.modules.protocols.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.ydtech.modules.protocols.entity.po.PtlAgreementDispatchRulesDict;
  4. import com.ydtech.modules.protocols.entity.po.PtlAgreementDispatchRulesDictLabal;
  5. import java.util.List;
  6. /**
  7. *@author: tz
  8. *@description: 协议承保规则字典 service
  9. *@create: 2024-2-22 15:44:29
  10. */
  11. public interface PtlAgreementDispatchRulesDictService extends IService<PtlAgreementDispatchRulesDict> {
  12. /**
  13. *
  14. * @return
  15. */
  16. List<PtlAgreementDispatchRulesDictLabal> getDispatchRulesDictList();
  17. }