123456789101112131415161718 |
- package com.fdkankan.fusion.mapper;
- import com.fdkankan.fusion.entity.JyPlatform;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author
- * @since 2025-06-26
- */
- @Mapper
- public interface IJyPlatformMapper extends BaseMapper<JyPlatform> {
- }
|