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

This commit is contained in:
2025-10-30 14:44:00 +08:00
47 changed files with 1140 additions and 696 deletions
+2 -18
View File
@@ -1,52 +1,36 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace IM_API.Models;
[Table("notifications")]
[Index("Userld", Name = "Userld")]
[MySqlCharSet("utf8mb4")]
[MySqlCollation("utf8mb4_general_ci")]
public partial class Notification
{
[Key]
[Column("ID", TypeName = "int(11)")]
public int Id { get; set; }
/// <summary>
/// 接收人(为空为全体通知)
/// </summary>
[Column(TypeName = "int(11)")]
public int Userld { get; set; }
public int UserId { get; set; }
/// <summary>
/// 通知类型(0:文本)
/// </summary>
[Column("NType", TypeName = "tinyint(4)")]
public sbyte Ntype { get; set; }
/// <summary>
/// 通知标题
/// </summary>
[StringLength(40)]
public string Title { get; set; } = null!;
/// <summary>
/// 通知内容
/// </summary>
[Column(TypeName = "text")]
public string Content { get; set; } = null!;
/// <summary>
/// 创建时间
/// </summary>
[Column(TypeName = "datetime")]
public DateTime Created { get; set; }
[ForeignKey("Userld")]
[InverseProperty("Notifications")]
public virtual User UserldNavigation { get; set; } = null!;
public virtual User User { get; set; } = null!;
}