集成ai部分
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.ruoyi.cms.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.cms.domain.ai.AiChatDetail;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Repository
|
||||
public interface AiChatDetailMapper extends BaseMapper<AiChatDetail> {
|
||||
|
||||
List<AiChatDetail> getList(AiChatDetail aiChatDetail);
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.ruoyi.cms.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.cms.domain.ai.AiChatHistory;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Repository
|
||||
public interface AiChatHistoryMapper extends BaseMapper<AiChatHistory> {
|
||||
|
||||
List<AiChatHistory> getList(AiChatHistory aiChatHistory);
|
||||
}
|
||||
Reference in New Issue
Block a user