PtlAgreementUndwrtRulesDictLabalMapper.java 520 B

12345678910111213141516171819202122
  1. package com.ydtech.modules.protocols.dao;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.ydtech.modules.protocols.entity.po.PtlAgreementUndwrtRulesDict;
  4. import com.ydtech.modules.protocols.entity.po.PtlAgreementUndwrtRulesDictLabal;
  5. import java.util.List;
  6. /**
  7. * @author tz
  8. * @description 协议承保规则字典的数据库操作Mapper
  9. * @createDate 2024-2-22 15:44:29
  10. */
  11. public interface PtlAgreementUndwrtRulesDictLabalMapper extends BaseMapper<PtlAgreementUndwrtRulesDictLabal> {
  12. }