123456789101112131415161718 |
- package com.huimv.video.dhicc.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.huimv.video.dhicc.entity.IccChannel;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author astupidcoder
- * @since 2021-12-06
- */
- public interface IccChannelMapper extends BaseMapper<IccChannel> {
- }
|