PumpingPressureWarnLogMapper.java 421 B

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