PtlAgreementAttributionHistoryMapper.java 573 B

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