mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-02-02 11:44:59 +08:00
定义 message 和 role mapper文件
This commit is contained in:
parent
d494c31302
commit
238ef89826
@ -0,0 +1,17 @@
|
|||||||
|
package cn.iocoder.yudao.module.ai.mapper;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
||||||
|
import cn.iocoder.yudao.module.ai.dataobject.AiChatMessage;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* message mapper
|
||||||
|
*
|
||||||
|
* @fansili
|
||||||
|
* @since v1.0
|
||||||
|
*/
|
||||||
|
@Repository
|
||||||
|
@Mapper
|
||||||
|
public interface AiChatMessageMapper extends BaseMapperX<AiChatMessage> {
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package cn.iocoder.yudao.module.ai.mapper;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
||||||
|
import cn.iocoder.yudao.module.ai.dataobject.AiChatRole;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* role mapper
|
||||||
|
*
|
||||||
|
* @fansili
|
||||||
|
* @since v1.0
|
||||||
|
*/
|
||||||
|
@Repository
|
||||||
|
@Mapper
|
||||||
|
public interface AiChatRoleMapper extends BaseMapperX<AiChatRole> {
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user