| 12345678910111213141516171819202122 |
- package com.ydtech.modules.protocols.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.ydtech.modules.protocols.entity.po.PtlAgreementDispatchRulesDict;
- import com.ydtech.modules.protocols.entity.po.PtlAgreementDispatchRulesDictLabal;
- import java.util.List;
- /**
- *@author: tz
- *@description: 协议承保规则字典 service
- *@create: 2024-2-22 15:44:29
- */
- public interface PtlAgreementDispatchRulesDictService extends IService<PtlAgreementDispatchRulesDict> {
- /**
- *
- * @return
- */
- List<PtlAgreementDispatchRulesDictLabal> getDispatchRulesDictList();
- }
|