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