出库领料记录
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
namespace Tnb.ProductionMgr.Entities.Dto
|
||||
{
|
||||
public class OutstockRecordListOutput
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string mo_task_code { get; set; }
|
||||
public string mo_id { get; set; }
|
||||
public string material_id { get; set; }
|
||||
public string material_id_id { get; set; }
|
||||
public string process_id { get; set; }
|
||||
public string process_id_id { get; set; }
|
||||
public string workstation_id { get; set; }
|
||||
public string workstation_id_id { get; set; }
|
||||
public string act_start_date { get; set; }
|
||||
public List<PrdKittingOutRecordListChildOutput> tablefield105 { get; set; } = new List<PrdKittingOutRecordListChildOutput>();
|
||||
public List<OutstockRecordListChildOutput> tablefield134 { get; set; } = new List<OutstockRecordListChildOutput>();
|
||||
}
|
||||
|
||||
public class OutstockRecordListChildOutput
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string code { get; set; }
|
||||
public string bill_code { get; set; }
|
||||
public string warehouse_id { get; set; }
|
||||
public string warehouse_id_id { get; set; }
|
||||
public string location_code { get; set; }
|
||||
public string create_id { get; set; }
|
||||
public string create_time { get; set; }
|
||||
/// <summary>
|
||||
/// 1 齐套 2 一般/物料出库
|
||||
/// </summary>
|
||||
public string type { get; set; }
|
||||
}
|
||||
public class PrdKittingOutRecordListChildOutput : OutstockRecordListChildOutput
|
||||
{
|
||||
public string collocation_scheme_id { get; set; }
|
||||
public string collocation_scheme_id_id { get; set; }
|
||||
}
|
||||
|
||||
public class OutstockRecordListDownOutput
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string material_id { get; set; }
|
||||
public string material_id_id { get; set; }
|
||||
public string unit_id { get; set; }
|
||||
public string code_batch { get; set; }
|
||||
public string pr_qty { get; set; }
|
||||
public string box { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -84,5 +84,10 @@ public partial class PrdOutstockH : BaseEntity<string>
|
||||
/// 流程引擎Id
|
||||
/// </summary>
|
||||
public string? f_flowid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 生产任务单id
|
||||
/// </summary>
|
||||
public string? mo_task_id { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user