- package com.hfln.device.infrastructure.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.hfln.device.infrastructure.po.TblParameter;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * 参数配置表 Mapper 接口
- */
- @Mapper
- public interface TblParameterMapper extends BaseMapper<TblParameter> {
- }
|