无关风月
2025-04-11 75942ecc2e438012c5ea876715966ace593565a0
ruoyi-service/ruoyi-study/src/main/java/com/ruoyi/study/mapper/TStoryListenMapper.java
@@ -2,6 +2,7 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.study.domain.TStoryListen;
import org.apache.ibatis.annotations.Param;
/**
 * <p>
@@ -13,4 +14,12 @@
 */
public interface TStoryListenMapper extends BaseMapper<TStoryListen> {
    /**
     * 获取故事详情
     *
     * @param quarter 季度
     * @param week    周
     * @return 故事信息
     */
    TStoryListen storyDetail(@Param("quarter") Integer quarter, @Param("week") Integer week);
}