|
@@ -171,7 +171,7 @@ namespace WCS.Entity
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "AGV任务号", IsNullable = true)]
|
|
|
public int AgvTaskID { get; set; }
|
|
|
-
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 优先级
|
|
|
/// </summary>
|
|
@@ -215,5 +215,45 @@ namespace WCS.Entity
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
|
|
|
public DateTime EditTime { get; set; }
|
|
|
+
|
|
|
+ #region 条码物料相关信息
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 物料编码
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
|
|
|
+ public string MatCode { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 材料号
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
|
|
|
+ public string InvBarCode { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 是否快投
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnDataType = "bit", IsNullable = true)]
|
|
|
+ public bool IsFast { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 等级
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
|
|
|
+ public string Grade { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 是否改手盘
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnDataType = "bit", IsNullable = true)]
|
|
|
+ public bool IsSurplus { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 是否返空
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnDataType = "bit", IsNullable = true)]
|
|
|
+ public bool IsRework { get; set; }
|
|
|
+
|
|
|
+ #endregion 条码物料相关信息
|
|
|
}
|
|
|
}
|