1111
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user