生产入库记录
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
namespace Tnb.ProductionMgr.Entities.Dto
|
||||
{
|
||||
public class PrdInstockRecordUpListOutPut
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string mo_task_code { get; set; }
|
||||
public string mo_task_status { get; set; }
|
||||
public string mo_id { get; set; }
|
||||
public string material_id { get; set; }
|
||||
public string workstation_id { get; set; }
|
||||
public string workline_id { get; set; }
|
||||
public string act_start_date { get; set; }
|
||||
public List<PrdInstockRecordUpListChildOutPut> tablefield102 { get; set; } = new List<PrdInstockRecordUpListChildOutPut>();
|
||||
}
|
||||
|
||||
public class PrdInstockRecordUpListChildOutPut
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string bill_code { get; set; }
|
||||
public string bill_type { get; set; }
|
||||
public string carry_code { get; set; }
|
||||
public string create_id { get; set; }
|
||||
public string bill_date { get; set; }
|
||||
}
|
||||
|
||||
public class PrdInstockRecordUpListDownOutPut
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string material_id { get; set; }
|
||||
public string material_code { get; set; }
|
||||
public string unit_id { get; set; }
|
||||
public string quantity { get; set; }
|
||||
public string code_batch { get; set; }
|
||||
/// <summary>
|
||||
/// 条码编号
|
||||
/// </summary>
|
||||
public string barcode { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
@@ -75,5 +75,15 @@ public partial class PrdInstockH : BaseEntity<string>
|
||||
/// 状态 0 申请入库 1 已入库
|
||||
/// </summary>
|
||||
public int? status { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 生产任务单id
|
||||
/// </summary>
|
||||
public string? mo_task_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 入库单编号
|
||||
/// </summary>
|
||||
public string? code { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user