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

15 lines
300 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.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.AiQaItem;
import org.apache.ibatis.annotations.Mapper;
/**
* AI 问答子表 Mapper
*
* <p>对应表ai_qa_item</p>
*/
@Mapper
public interface AiQaItemMapper extends BaseMapper<AiQaItem> {
}