1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.ruoyi.service;
|
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ruoyi.domain.ZAutobiography;
|
| import java.util.List;
|
| /**
| * <p>
| * 服务类
| * </p>
| *
| * @author ojq
| * @since 2023-03-14
| */
| public interface ZAutobiographyService extends IService<ZAutobiography> {
|
| List<ZAutobiography> selectAutobiographyList(Long userId);
|
| List<ZAutobiography> listByTerm(Long userId,Integer termId);
| }
|
|