1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.panzhihua.sangeshenbian.service;
|
| import com.baomidou.mybatisplus.core.metadata.IPage;
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.panzhihua.sangeshenbian.model.ProblemType;
|
| /**
| * @author zhibing.pu
| * @Date 2025/2/23 2:26
| */
| public interface IProblemTypeService extends IService<ProblemType> {
|
|
| IPage<ProblemType> list(String name, Integer pageNum, Integer pageSize);
| }
|
|