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