#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* 版权所有 (c) 2026 WenJY 保留所有权利。
* CLR版本:4.0.30319.42000
* 机器名称:Mr.Wen's MacBook Pro
* 命名空间:Sln.Wcs.Model.Domain
* 唯一标识:814EEFF5-9B71-42F2-B2EA-CE33BB34E477
*
* 创建者:WenJY
* 电子邮箱:
* 创建时间:2026-05-07 10:04:13
* 版本:V1.0.0
* 描述:
*
*--------------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
*
* 版本:V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using SqlSugar;
namespace Sln.Wcs.Model.Domain;
///
/// 实时任务队列
///
[SugarTable("live_task_queue"), TenantAttribute("core")]
public class LiveTaskQueue
{
///
/// Desc:主键标识
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "obj_id")]
public int objId { get; set; }
///
/// Desc:任务编号
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "task_code")]
public string taskCode { get; set; }
///
/// Desc:物料编号
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "material_code")]
public string materialCode { get; set; }
///
/// Desc:托盘条码
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "pallet_barcode")]
public string palletBarcode { get; set; }
///
/// Desc:物料条码
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "material_barcode")]
public string materialBarcode { get; set; }
///
/// Desc:物料数量
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "material_count")]
public int? materialCount { get; set; }
///
/// Desc:任务类型:1-入库;2-出库;
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "task_type")]
public int? taskType { get; set; }
///
/// Desc:任务类别:1-包材;2-成品;3-托盘
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "task_category")]
public int? taskCategory { get; set; }
///
/// Desc:起始位置
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "start_point")]
public string startPoint { get; set; }
///
/// Desc:结束位置
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "end_point")]
public string endPoint { get; set; }
///
/// Desc:任务状态:1-待执行;2-执行中;3-已完成;
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "task_status")]
public int? taskStatus { get; set; }
///
/// Desc:任务步骤:根据路径
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "task_steps")]
public int? taskSteps { get; set; }
///
/// Desc:是否标识:1-是;0-否
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "is_flag")]
public int? isFlag { get; set; }
///
/// Desc:备注
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "remark")]
public string remark { get; set; }
///
/// Desc:创建人
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "created_by")]
public string createdBy { get; set; }
///
/// Desc:创建时间
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "created_time")]
public DateTime? createdTime { get; set; }
///
/// Desc:更新人
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "updated_by")]
public string updatedBy { get; set; }
///
/// Desc:更新时间
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "updated_time")]
public DateTime? updatedTime { get; set; }
///
/// 明细集合
///
[SugarColumn(IsIgnore = true)]
public List taskDetails { get; set; }
}