using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_task_log
{
///
/// utId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string utId { get; set; }
///
/// userId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? userId { get; set; }
///
/// taskId
///
[SugarColumn(IsNullable = true)]
public int? taskId { get; set; }
///
/// addTime
///
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
///
/// endTime
///
[SugarColumn(IsNullable = true)]
public long? endTime { get; set; }
}
}