TblParameterMapper.java 327 B

123456789101112
  1. package com.hfln.device.infrastructure.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.hfln.device.infrastructure.po.TblParameter;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * 参数配置表 Mapper 接口
  7. */
  8. @Mapper
  9. public interface TblParameterMapper extends BaseMapper<TblParameter> {
  10. }