IProjectBimMapper.java 388 B

12345678910111213141516171819
  1. package com.fdkankan.site.mapper;
  2. import com.fdkankan.site.entity.ProjectBim;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import com.github.yulichang.base.MPJBaseMapper;
  5. import org.apache.ibatis.annotations.Mapper;
  6. /**
  7. * <p>
  8. * Mapper 接口
  9. * </p>
  10. *
  11. * @author
  12. * @since 2022-10-10
  13. */
  14. @Mapper
  15. public interface IProjectBimMapper extends MPJBaseMapper<ProjectBim> {
  16. }