123456789101112131415161718 |
- package com.fdkankan.manage_jp.mapper;
- import com.fdkankan.manage_jp.entity.Surveillance;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * 监控推拉流信息 Mapper 接口
- * </p>
- *
- * @author
- * @since 2023-04-23
- */
- @Mapper
- public interface ISurveillanceMapper extends BaseMapper<Surveillance> {
- }
|