123456789101112131415161718192021222324 |
- package com.welampiot.dao;
- import com.welampiot.dto.TrailInfoDTO;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * ClassName: TrailInfoDao
- * Package: com.welampiot.dao
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/9/11 - 18:23
- * @Version: v1.0
- */
- public interface TrailInfoDao {
- List<TrailInfoDTO> getTrailInfoListByVideoId(@Param("videoId") Integer videoId);
- List<TrailInfoDTO> getSmailListByVideoId(@Param("videoId") Integer videoId);
- List<TrailInfoDTO> getList(Integer id);
- TrailInfoDTO getSmaiListById(Integer id);
- TrailInfoDTO getSmaiList(Integer id);
- }
|