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