using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Game")] public class unit_user_practise { /// /// practiseId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string practiseId { get; set; } /// /// userId /// [SugarColumn(Length = 50, IsNullable = true)] public string userId { get; set; } /// /// name /// [SugarColumn(Length = 50, IsNullable = true)] public string name { get; set; } /// /// exp /// [SugarColumn(Length = 18, IsNullable = true)] public decimal? exp { get; set; } /// /// addTime /// [SugarColumn(IsNullable = true)] public DateTime? addTime { get; set; } /// /// endTime /// [SugarColumn(IsNullable = true)] public DateTime? endTime { get; set; } } }