1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package cc.mrbird.febs.ai.service;
|
| import cc.mrbird.febs.ai.entity.AiProductQuestionLink;
| import com.baomidou.mybatisplus.extension.service.IService;
| import java.util.List;
|
| /**
| * 产品题目关系表 Service接口
| *
| * @author yourname
| * @date 2025-07-29
| */
| public interface AiProductQuestionLinkService extends IService<AiProductQuestionLink> {
|
|
| }
|
|