using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Game")] public class unit_user_task { /// /// utId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string utId { get; set; } /// /// userId /// [SugarColumn(Length = 50, IsNullable = true)] public string? userId { get; set; } /// /// taskId /// [SugarColumn(IsNullable = true)] public int? taskId { get; set; } /// /// itemId /// [SugarColumn(IsNullable = true)] public int? itemId { get; set; } [SugarColumn(IsNullable = true)] public int? lev { get; set; } /// /// name /// [SugarColumn(Length = 255, IsNullable = true)] public string? name { get; set; } /// /// code /// [SugarColumn(Length = 50, IsNullable = true)] public string? code { get; set; } /// /// endTime /// [SugarColumn(IsNullable = true)] public long? endTime { get; set; } } }