using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_friend
{
///
/// fId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string fId { get; set; }
///
/// sId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? sId { get; set; }
///
/// mId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? mId { get; set; }
///
/// near
///
[SugarColumn(IsNullable = true)]
public int? near { get; set; }
///
/// status
///
[SugarColumn(IsNullable = true)]
public int? status { get; set; }
///
/// addTime
///
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
}
}