Files
Kg.SeaTime/Service/Application.Domain.Entity/game/user/unit_user_friend.cs
2026-05-29 19:06:51 +08:00

39 lines
933 B
C#

using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_friend
{
/// <summary>
/// frId
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 100)]
public string frId { get; set; }
/// <summary>
/// userId
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? userId { get; set; }
/// <summary>
/// toId
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? toId { get; set; }
/// <summary>
/// 亲密度
/// </summary>
[SugarColumn(IsNullable = true)]
public long? near { get; set; }
/// <summary>
/// addTime
/// </summary>
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
}
}