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