This commit is contained in:
Putoo
2026-05-29 19:06:51 +08:00
parent 69ae1e3174
commit bd1535aee9
48 changed files with 1571 additions and 133 deletions

View File

@@ -7,34 +7,28 @@ namespace Application.Domain.Entity
public class unit_user_friend
{
/// <summary>
/// fId
/// frId
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string fId { get; set; }
[SugarColumn(IsPrimaryKey = true, Length = 100)]
public string frId { get; set; }
/// <summary>
/// sId
/// userId
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? sId { get; set; }
public string? userId { get; set; }
/// <summary>
/// mId
/// toId
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? mId { get; set; }
public string? toId { get; set; }
/// <summary>
/// near
/// 亲密度
/// </summary>
[SugarColumn(IsNullable = true)]
public int? near { get; set; }
/// <summary>
/// status
/// </summary>
[SugarColumn(IsNullable = true)]
public int? status { get; set; }
public long? near { get; set; }
/// <summary>
/// addTime
@@ -42,4 +36,4 @@ namespace Application.Domain.Entity
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
}
}
}