mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-06-20 23:42:00 +08:00
增加do后缀
This commit is contained in:
parent
7c8ec404db
commit
bff0ad65dc
@ -13,7 +13,7 @@ import java.util.Date;
|
|||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
@Accessors(chain = true)
|
@Accessors(chain = true)
|
||||||
public class AiChatMessage {
|
public class AiChatMessageDO {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 编号,作为每条聊天记录的唯一标识符
|
* 编号,作为每条聊天记录的唯一标识符
|
@ -12,7 +12,7 @@ import lombok.experimental.Accessors;
|
|||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
@Accessors(chain = true)
|
@Accessors(chain = true)
|
||||||
public class AiChatRole extends BaseDO {
|
public class AiChatRoleDO extends BaseDO {
|
||||||
/**
|
/**
|
||||||
* 编号,表示聊天角色在数据库中的唯一标识符
|
* 编号,表示聊天角色在数据库中的唯一标识符
|
||||||
*/
|
*/
|
@ -1,7 +1,7 @@
|
|||||||
package cn.iocoder.yudao.module.ai.mapper;
|
package cn.iocoder.yudao.module.ai.mapper;
|
||||||
|
|
||||||
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
||||||
import cn.iocoder.yudao.module.ai.dataobject.AiChatMessage;
|
import cn.iocoder.yudao.module.ai.dataobject.AiChatMessageDO;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
import org.springframework.stereotype.Repository;
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
@ -13,5 +13,5 @@ import org.springframework.stereotype.Repository;
|
|||||||
*/
|
*/
|
||||||
@Repository
|
@Repository
|
||||||
@Mapper
|
@Mapper
|
||||||
public interface AiChatMessageMapper extends BaseMapperX<AiChatMessage> {
|
public interface AiChatMessageMapper extends BaseMapperX<AiChatMessageDO> {
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package cn.iocoder.yudao.module.ai.mapper;
|
package cn.iocoder.yudao.module.ai.mapper;
|
||||||
|
|
||||||
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
||||||
import cn.iocoder.yudao.module.ai.dataobject.AiChatRole;
|
import cn.iocoder.yudao.module.ai.dataobject.AiChatRoleDO;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
import org.springframework.stereotype.Repository;
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
@ -13,5 +13,5 @@ import org.springframework.stereotype.Repository;
|
|||||||
*/
|
*/
|
||||||
@Repository
|
@Repository
|
||||||
@Mapper
|
@Mapper
|
||||||
public interface AiChatRoleMapper extends BaseMapperX<AiChatRole> {
|
public interface AiChatRoleMapper extends BaseMapperX<AiChatRoleDO> {
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user