PtlAgreementDispatchRulesDictLabalServiceImpl.java 862 B

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