fix
Helius
2021-12-22 822b60fd6a7d73708b908123e6d5b976fb38264a
1
2
3
4
5
6
7
8
9
10
11
12
package cc.mrbird.febs.video.mapper;
 
import cc.mrbird.febs.video.entity.VideoMasterDataEntity;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
public interface VideoMasterDataMapper extends BaseMapper<VideoMasterDataEntity> {
 
    VideoMasterDataEntity selectDataByMasterId(@Param("masterId") Long masterId);
 
    VideoMasterDataEntity selectDataByMasterIdForUpdate(@Param("masterId") Long master);
}