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; }
}
}