refactor: 重命名 backend-single 目录为 server

This commit is contained in:
2026-06-27 17:23:53 +08:00
parent 8daf51301a
commit 0d77d76858
464 changed files with 0 additions and 0 deletions
@@ -0,0 +1,55 @@
package com.emotion.dto.response;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 对话响应类
*
* @author huazhongmin
* @date 2025-07-24
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class ConversationResponse extends BaseResponse {
/**
* 用户ID
*/
private String userId;
/**
* Coze对话ID
*/
private String cozeConversationId;
/**
* 对话标题
*/
private String title;
/**
* 对话类型
*/
private String type;
/**
* 对话状态
*/
private String status;
/**
* 消息数量
*/
private Integer messageCount;
/**
* 最后消息时间
*/
private String lastMessageTime;
/**
* 客户端IP
*/
private String clientIp;
}