using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Game")] public class unit_user_ship { /// /// usId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string usId { get; set; } /// /// userId /// [SugarColumn(Length = 50, IsNullable = true)] public string? userId { get; set; } /// /// goodsId /// [SugarColumn(IsNullable = true)] public int? goodsId { get; set; } /// /// name /// [SugarColumn(Length = 50, IsNullable = true)] public string? name { get; set; } /// /// speed /// [SugarColumn(IsNullable = true)] public int? speed { get; set; } /// /// weight /// [SugarColumn(IsNullable = true)] public int? weight { get; set; } /// /// copper /// [SugarColumn(IsNullable = true)] public int? copper { get; set; } /// /// 出售价格 /// [SugarColumn(IsNullable = true)] public long? sale { get; set; } /// /// remark /// [SugarColumn(Length = 255, IsNullable = true)] public string? remark { get; set; } } }