123456789101112131415161718 |
- package com.gyee.power.fitting.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.gyee.power.fitting.model.Windpowerstationtestingpoint2;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author gfhd
- * @since 2022-12-13
- */
- @Mapper
- public interface Windpowerstationtestingpoint2Mapper extends BaseMapper<Windpowerstationtestingpoint2> {
- }
|