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,35 @@
package com.emotion.dto.response;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* AI总结响应类
*
* @author huazhongmin
* @date 2025-07-24
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class AiSummaryResponse extends BaseResponse {
/**
* 会话ID
*/
private String conversationId;
/**
* 总结内容
*/
private String summary;
/**
* 用户ID
*/
private String userId;
/**
* 时间戳
*/
private Long timestamp;
}