生产投料记录

This commit is contained in:
2023-11-24 16:41:38 +08:00
parent f95b1fb326
commit ba8775adb3
4 changed files with 223 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
namespace Tnb.ProductionMgr.Entities.Dto
{
public class PrdFeedingRecordUpListOutPut
{
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<PrdFeedingRecordUpListChildOutPut> tablefield102 { get; set; } = new List<PrdFeedingRecordUpListChildOutPut>();
}
public class PrdFeedingRecordUpListChildOutPut
{
public string id { get; set; }
public string code { get; set; }
public string carry_code { get; set; }
public string create_id { get; set; }
public string create_time { get; set; }
}
public class PrdFeedingRecordUpListDownOutPut
{
public string id { get; set; }
public string material_id { get; set; }
public string unit_id { get; set; }
public string num { get; set; }
public string batch { get; set; }
}
}