This commit is contained in:
2024-05-16 16:37:30 +08:00
parent 5f2a6bcdda
commit 5debdf1a07
8 changed files with 119 additions and 3 deletions

View File

@@ -165,6 +165,16 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
public string warehouse_name { get; set; }
/// <summary>
/// 入库库位id
/// </summary>
public string? as_location_id { get; set; }
/// <summary>
/// 入库库位编号
/// </summary>
public string? as_location_code { get; set; }
}
}

View File

@@ -17,6 +17,10 @@
///<br/> Compled(任务完成)
/// </summary>
public string Behavior { get; set; }
/// <summary>
/// 暂停原因
/// </summary>
public String PauseReeson { get; set; }
}
}

View File

@@ -202,5 +202,9 @@ public partial class PrdMoTask : BaseEntity<string>
/// 批号
/// </summary>
public string? batch { get; set; }
/// <summary>
/// 暂停原因
/// </summary>
public string? pause_reason { get; set; }
}