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