using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Game")] public class unit_user_vigour { /// /// 活力表 /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string userId { get; set; } /// /// 当前活力 /// [SugarColumn(IsNullable = true)] public long? vitality { get; set; } /// /// 最大活力 /// [SugarColumn(IsNullable = true)] public long? upVitality { get; set; } /// /// 更新时间 /// [SugarColumn(IsNullable = true)] public string? upTime { get; set; } } }