| 123456789101112131415161718 |
- package com.ydtech.modules.protocol.dao;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.ydtech.modules.protocol.entity.po.PtlAgreementUndwrtRules;
- /**
- * @author CXP
- * @description 针对表【ptl_agreement_undwrt_rules(协议产品费用)】的数据库操作Mapper
- * @createDate 2023年12月20日22:28:24
- * @Entity com.ydtech.modules.protocol.entity.po.PtlAgreementUndwrtRules
- */
- public interface PtlAgreementUndwrtRulesMapper extends BaseMapper<PtlAgreementUndwrtRules> {
- }
|