52 lines
1.2 KiB
C#
52 lines
1.2 KiB
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Application.Domain.Entity
|
|
{
|
|
[Tenant("Kg.SeaTime.Game")]
|
|
public class unit_user_task
|
|
{
|
|
/// <summary>
|
|
/// utId
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
|
public string utId { get; set; }
|
|
|
|
/// <summary>
|
|
/// userId
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? userId { get; set; }
|
|
|
|
/// <summary>
|
|
/// taskId
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? taskId { get; set; }
|
|
|
|
/// <summary>
|
|
/// itemId
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? itemId { get; set; }
|
|
|
|
/// <summary>
|
|
/// name
|
|
/// </summary>
|
|
[SugarColumn(Length = 255, IsNullable = true)]
|
|
public string? name { get; set; }
|
|
|
|
/// <summary>
|
|
/// code
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? code { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// endTime
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long? endTime { get; set; }
|
|
}
|
|
} |