Merge branch 'feature-nxdev' of https://gitea.nxsir.cn/code/IM into feature-nxdev

This commit is contained in:
2025-11-27 16:56:02 +08:00
25 changed files with 479 additions and 83 deletions
+4 -3
View File
@@ -1,4 +1,5 @@
using System.ComponentModel.DataAnnotations;
using IM_API.Models;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IM_API.Dtos
@@ -22,7 +23,7 @@ namespace IM_API.Dtos
/// 0(默认):不在线
/// 1:在线
/// </summary>
public sbyte OlineStatus { get; set; }
public UserOnlineStatus OnlineStatusEnum { get; set; }
/// <summary>
/// 创建时间
@@ -33,6 +34,6 @@ namespace IM_API.Dtos
/// 账户状态
/// (0:未激活,1:正常,2:封禁)
/// </summary>
public sbyte Status { get; set; }
public UserStatus StatusEnum { get; set; }
}
}