10 lines
272 B
Java
10 lines
272 B
Java
package com.peanut.modules.common.dao;
|
|
|
|
import com.github.yulichang.base.MPJBaseMapper;
|
|
import com.peanut.modules.common.entity.VideoM3u8Entity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
@Mapper
|
|
public interface VideoM3u8Dao extends MPJBaseMapper<VideoM3u8Entity> {
|
|
}
|