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