| 123456789101112131415161718192021222324 |
- package com.ydtech.modules.protocols.service.impl;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.ydtech.modules.protocols.dao.PtlAgreementDispatchRulesDictLabalMapper;
- import com.ydtech.modules.protocols.entity.po.PtlAgreementDispatchRulesDictLabal;
- import com.ydtech.modules.protocols.service.PtlAgreementDispatchRulesDictLabalService;
- import org.springframework.stereotype.Service;
- /**
- * @Author: tz
- * @description 协议承保规则属性字典 service实现类
- * @createDate 2024-2-22 15:44:29
- * @Entity com.ydtech.modules.protocol.entity.po.PtlAgreementDispatchRulesdictMapper
- */
- @Service
- public class PtlAgreementDispatchRulesDictLabalServiceImpl extends ServiceImpl<PtlAgreementDispatchRulesDictLabalMapper, PtlAgreementDispatchRulesDictLabal>
- implements PtlAgreementDispatchRulesDictLabalService {
- }
|