1234567891011121314151617 |
- package com.huimv.video.dhicc.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.huimv.video.dhicc.entity.SysThreshold;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author astupidcoder
- * @since 2021-11-30
- */
- public interface SysThresholdMapper extends BaseMapper<SysThreshold> {
- }
|