using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Game")] public class unit_user_team { /// /// userId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string userId { get; set; } /// /// teamId /// [SugarColumn(Length = 50, IsNullable = true)] public string? teamId { get; set; } } }