hjl
2024-06-07 3407c10808d75f2f9340a030f90191ecafa055a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ruoyi.study.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.study.domain.TStoryListen;
 
import java.util.List;
 
/**
 * <p>
 * 听故事 服务类
 * </p>
 *
 * @author 无关风月
 * @since 2024-04-26
 */
public interface ITStoryListenService extends IService<TStoryListen> {
 
    /**
     * 获取故事详情
     *
     * @param quarter 季度
     * @param week    周
     * @return 故事信息
     */
    List<TStoryListen> storyDetail(Integer quarter, Integer week);
}