123456789101112131415161718 |
- package com.gyee.power.fitting.mapper;
- import com.gyee.power.fitting.model.Powerfittinganalysis;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author chenmh
- * @since 2022-11-03
- */
- @Mapper
- public interface PowerfittinganalysisMapper extends BaseMapper<Powerfittinganalysis> {
- }
|