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