Files
Kg.SeaTime/Service/Application.Domain.Entity/resource/game/game_task_item.cs
2026-07-09 22:46:28 +08:00

100 lines
2.5 KiB
C#

using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_task_item
{
/// <summary>
/// tiId
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public int tiId { get; set; }
/// <summary>
/// taskId
/// </summary>
[SugarColumn(IsNullable = true)]
public int? taskId { get; set; }
/// <summary>
/// name
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? name { get; set; }
/// <summary>
/// 主线、支线
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? code { get; set; }
/// <summary>
/// inType
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? inType { get; set; }
/// <summary>
/// 普通,答题
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? itemCode { get; set; }
/// <summary>
/// 0起始环 1任务环 2结束环
/// </summary>
[SugarColumn(IsNullable = true)]
public int? itemType { get; set; }
/// <summary>
/// npcId
/// </summary>
[SugarColumn(IsNullable = true)]
public int? npcId { get; set; }
/// <summary>
/// needData
/// </summary>
[SugarColumn(IsNullable = true,IsJson = true)]
public List<TaskNeedData> needData { get; set; }
/// <summary>
/// 环说明
/// </summary>
[SugarColumn(IsNullable = true)]
public string? taskTips { get; set; }
/// <summary>
/// nextTips
/// </summary>
[SugarColumn(IsNullable = true)]
public string? nextTips { get; set; }
/// <summary>
/// 按钮提示
/// </summary>
[SugarColumn(IsNullable = true)]
public string? btnTips { get; set; }
/// <summary>
/// award
/// </summary>
[SugarColumn(IsNullable = true)]
public string? award { get; set; }
/// <summary>
/// 任务时长
/// </summary>
[SugarColumn(IsNullable = true)]
public int? time { get; set; }
/// <summary>
/// 等级
/// </summary>
[SugarColumn(IsNullable = true)]
public int? lev { get; set; }
}
}