2026-06-05 15:16:49 +08:00
|
|
|
using SqlSugar;
|
2026-06-08 16:57:44 +08:00
|
|
|
using QYZH.InteractiveMagazine.Models.Enum;
|
2026-06-05 15:16:49 +08:00
|
|
|
|
|
|
|
|
namespace QYZH.InteractiveMagazine.Models.Entity
|
|
|
|
|
{
|
|
|
|
|
///<summary>
|
|
|
|
|
///点赞记录表
|
|
|
|
|
///</summary>
|
2026-07-08 10:37:03 +08:00
|
|
|
[SugarTable("Community_MessageLike")]
|
2026-06-05 15:16:49 +08:00
|
|
|
public partial class CommunityMessageLike : SqlSugarBaseEntity
|
|
|
|
|
{
|
|
|
|
|
public CommunityMessageLike()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:用户Id
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:消息Id
|
|
|
|
|
/// Default:
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long MessageId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Desc:点赞类型
|
|
|
|
|
/// Default:Like
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
/// </summary>
|
2026-06-08 16:57:44 +08:00
|
|
|
public CommunityMessageLikeTypeEnum Type { get; set; }
|
2026-06-05 15:16:49 +08:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|