You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using DS.Module.Core.Data ;
using SqlSugar ;
namespace DS.WMS.Core.TaskPlat.Entity
{
/// <summary>
/// 任务归属关系表
///</summary>
[SugarTable("task_base_allocation", "任务归属关系表")]
public class TaskBaseAllocation : BaseModelV2 < long >
{
/// <summary>
/// 任务主键
/// </summary>
[SugarColumn(ColumnDescription = "任务主键", IsNullable = false)]
public long TaskId { get ; set ; }
/// <summary>
/// 所属人员主键
/// </summary>
[SugarColumn(ColumnDescription = "所属人员主键", IsNullable = false)]
public long UserId { get ; set ; }
/// <summary>
/// 所属人员姓名
/// </summary>
[SugarColumn(ColumnDescription = "所属人员姓名", IsNullable = false, Length = 255)]
public string UserName { get ; set ; }
/// <summary>
/// 状态 Create-待处理; Retransmit-已转发; Complete-已完成; Cancel-已取消; Pending-已挂起
/// </summary>
[SugarColumn(ColumnDescription = "状态 Create-待处理; Retransmit-已转发; Complete-已完成; Cancel-已取消; Pending-已挂起", IsNullable = false, Length = 20, DefaultValue = "")]
public string Status { get ; set ; } = "" ;
/// <summary>
/// 状态名称
/// </summary>
[SugarColumn(ColumnDescription = "状态名称", IsNullable = true, Length = 50)]
public string? StatusName { get ; set ; }
/// <summary>
/// 状态发生时间
/// </summary>
[SugarColumn(ColumnDescription = "状态发生时间", IsNullable = true)]
public DateTime ? StatusTime { get ; set ; }
}
}