PowerfittinganalysisMapper.java 381 B

123456789101112131415161718
  1. package com.gyee.power.fitting.mapper;
  2. import com.gyee.power.fitting.model.Powerfittinganalysis;
  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 chenmh
  11. * @since 2022-11-03
  12. */
  13. @Mapper
  14. public interface PowerfittinganalysisMapper extends BaseMapper<Powerfittinganalysis> {
  15. }