PtlAgreementUndwrtRulesMapper.java 508 B

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