PtlAgreementAttributionMapper.java 482 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.PtlAgreementAttribution;
  4. /**
  5. * @author wenks
  6. * @description 针对表【ptl_agreement_attribution(协议归属信息)】的数据库操作Mapper
  7. * @createDate 2023-07-03 09:31:16
  8. * @Entity generator.domain.PtlAgreementAttribution
  9. */
  10. public interface PtlAgreementAttributionMapper extends BaseMapper<PtlAgreementAttribution> {
  11. }