21 lines
458 B
C#
21 lines
458 B
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Application.Domain.Entity
|
|
{
|
|
[Tenant("Kg.SeaTime.Game")]
|
|
public class unit_user_blood
|
|
{
|
|
/// <summary>
|
|
/// userId
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
|
public string userId { get; set; }
|
|
|
|
/// <summary>
|
|
/// blood
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? blood { get; set; }
|
|
}
|
|
} |