IJyPlatformMapper.java 341 B

123456789101112131415161718
  1. package com.fdkankan.fusion.mapper;
  2. import com.fdkankan.fusion.entity.JyPlatform;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * <p>
  7. * Mapper 接口
  8. * </p>
  9. *
  10. * @author
  11. * @since 2025-06-26
  12. */
  13. @Mapper
  14. public interface IJyPlatformMapper extends BaseMapper<JyPlatform> {
  15. }