- package com.cn.tianji.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.cn.tianji.entity.PumpingPressureWarnLog;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * 泵压预警数据;(pumping_pressure_warn_log)表数据库访问层
- * @author : http://www.chiner.pro
- * @date : 2024-6-6
- */
- @Mapper
- public interface PumpingPressureWarnLogMapper extends BaseMapper<PumpingPressureWarnLog> {
- }
|