feat:增加查询消息接口模块

This commit is contained in:
2026-06-21 21:59:05 +08:00
parent f9084cfb23
commit c66bd02084
22 changed files with 398 additions and 38 deletions

View File

@@ -0,0 +1,14 @@
namespace SweetChatService.Dto
{
/// <summary>
/// 会话消息
/// </summary>
public class ChatMessageDto
{
public long MsgId { get; set; }
public long SenderId { get; set; }
public string Content { get; set; } = string.Empty;
public byte MsgType { get; set; }
public DateTime CreateTime { get; set; }
}
}