Files
Kg.SeaTime/Service/Application.Domain.Entity/resource/game/game_city_map_res.cs
Putoo 784bc66ef6 111
2026-05-20 18:32:54 +08:00

58 lines
1.4 KiB
C#

using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_city_map_res
{
/// <summary>
/// 资源id
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string resId { get; set; }
/// <summary>
/// 地图id
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? mapId { get; set; }
/// <summary>
/// 资源名称
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? resName { get; set; }
/// <summary>
/// 对应物品ID
/// </summary>
[SugarColumn(IsNullable = true)]
public int? goodsId { get; set; }
/// <summary>
/// 获取资源数量
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? count { get; set; }
/// <summary>
/// 采集需要数量
/// </summary>
[SugarColumn(IsNullable = true)]
public int? needVigour { get; set; }
/// <summary>
/// 成功率
/// </summary>
[SugarColumn(Length = 18, IsNullable = true)]
public decimal? okRadio { get; set; }
/// <summary>
/// 采集锁定时间
/// </summary>
[SugarColumn(IsNullable = true)]
public int? gatherTime { get; set; }
}
}