using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_ship
{
///
/// shipId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public int shipId { get; set; }
///
/// npc
///
[SugarColumn(IsNullable = true)]
public int? npc { get; set; }
///
/// shipName
///
[SugarColumn(Length = 50, IsNullable = true)]
public string shipName { get; set; }
///
/// img
///
[SugarColumn(Length = 50, IsNullable = true)]
public string img { get; set; }
///
/// price
///
[SugarColumn(Length = 18, IsNullable = true)]
public decimal? price { get; set; }
///
/// salePrice
///
[SugarColumn(Length = 18, IsNullable = true)]
public decimal? salePrice { get; set; }
///
/// payType
///
[SugarColumn(Length = 50, IsNullable = true)]
public string payType { get; set; }
///
/// weight
///
[SugarColumn(IsNullable = true)]
public int? weight { get; set; }
///
/// speed
///
[SugarColumn(IsNullable = true)]
public int? speed { get; set; }
///
/// neeGold
///
[SugarColumn(IsNullable = true)]
public int? neeGold { get; set; }
///
/// remark
///
[SugarColumn(Length = 50, IsNullable = true)]
public string remark { get; set; }
}
}