GasThresholdMapper.java 303 B

12345678910111213141516
  1. package com.huimv.admin.mapper;
  2. import com.huimv.admin.entity.GasThreshold;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. /**
  5. * <p>
  6. * 气体阈值 Mapper 接口
  7. * </p>
  8. *
  9. * @author author
  10. * @since 2023-02-21
  11. */
  12. public interface GasThresholdMapper extends BaseMapper<GasThreshold> {
  13. }