| 123456789101112131415161718 |
- package me.zhengjie.archives.dao;
- import me.zhengjie.archives.entity.GzArchivesExEntity;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author <a href="https://www.fengwenyi.com?code">Erwin Feng</a>
- * @since 2023-06-26
- */
- @Mapper
- public interface IGzArchivesExDao extends BaseMapper<GzArchivesExEntity> {
- }
|