You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
395 B
17 lines
395 B
1 year ago
|
package com.ssf.mysqloracletest.mapper;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.ssf.mysqloracletest.domain.DevopsVideoInfo;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
/**
|
||
|
* 视频监控设备表(DevopsVideoInfo)Mapper
|
||
|
*
|
||
|
* @author makejava
|
||
|
* @since 2023-12-14 16:26:47
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface DevopsVideoInfoMapper extends BaseMapper<DevopsVideoInfo> {
|
||
|
|
||
|
}
|