Files
smartDriveEE/src/main/java/com/rj/service/IAiQaItemService.java
2026-03-29 21:34:18 +08:00

13 lines
302 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.rj.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.rj.entity.AiQaItem;
/**
* AI 问答子表 服务类
*
* <p>对应表ai_qa_item常规 CRUD 与分页见 {@link IService}。</p>
*/
public interface IAiQaItemService extends IService<AiQaItem> {
}