| 123456789101112131415161718 |
- package com.ydtech.modules.protocol.dao;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.ydtech.modules.protocol.entity.po.PtlAgreementAttribution;
- /**
- * @author wenks
- * @description 针对表【ptl_agreement_attribution(协议归属信息)】的数据库操作Mapper
- * @createDate 2023-07-03 09:31:16
- * @Entity generator.domain.PtlAgreementAttribution
- */
- public interface PtlAgreementAttributionMapper extends BaseMapper<PtlAgreementAttribution> {
- }
|