SysThresholdMapper.java 310 B

1234567891011121314151617
  1. package com.huimv.video.dhicc.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.huimv.video.dhicc.entity.SysThreshold;
  4. /**
  5. * <p>
  6. * Mapper 接口
  7. * </p>
  8. *
  9. * @author astupidcoder
  10. * @since 2021-11-30
  11. */
  12. public interface SysThresholdMapper extends BaseMapper<SysThreshold> {
  13. }