16 lines
329 B
Java
16 lines
329 B
Java
![]() |
package com.mosty.rzzx.mapper;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.mosty.base.model.entity.rzzx.TbRzSpbf;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
/**
|
||
|
* @author dw
|
||
|
* @since 2022/7/12
|
||
|
* 视屏播放日志mapper
|
||
|
**/
|
||
|
@Mapper
|
||
|
public interface TbRzSpbfMapper extends BaseMapper<TbRzSpbf> {
|
||
|
|
||
|
}
|