bug,生产bom工序添加排序和是否最后一道工序字段

This commit is contained in:
2023-06-25 15:19:26 +08:00
parent ac094e1d58
commit d2ae9d8751

View File

@@ -53,5 +53,15 @@ public partial class BasMbomProcess : BaseEntity<string>
/// 工艺路线子表id
/// </summary>
public string route_detail_id { get; set; }
/// <summary>
/// 是否时最后一道工序
/// </summary>
public int is_last { get; set; }
/// <summary>
/// 排序
/// </summary>
public int ordinal { get; set; }
}