IccChannelMapper.java 305 B

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