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