using System; using System.Collections.Generic; namespace StopShopping.EF.Models; /// /// 用户消息 /// public partial class Message { /// /// 主键 /// public int Id { get; set; } /// /// 发出用户id /// public int FromUserId { get; set; } /// /// 接收用户id /// public int ToUserId { get; set; } /// /// 发出时间 /// public DateTime SentTime { get; set; } /// /// 是否已读 /// public bool Read { get; set; } /// /// 是否已撤回 /// public bool Recalled { get; set; } /// /// 内容 /// public string Content { get; set; } = null!; }