投料保存 领料记录
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
namespace Tnb.ProductionMgr.Entities.Dto
|
||||
{
|
||||
public class FeedingInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 工位id
|
||||
/// </summary>
|
||||
public string station_id { get; set; } = string.Empty;
|
||||
|
||||
// /// <summary>
|
||||
// /// 任务单id
|
||||
// /// </summary>
|
||||
// public string? mo_task_id { get; set; }
|
||||
//
|
||||
// /// <summary>
|
||||
// /// 设备id
|
||||
// /// </summary>
|
||||
// public string? equip_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 二维码信息
|
||||
/// </summary>
|
||||
public string? carry_code { get; set; }
|
||||
|
||||
public List<FeedingDInput> details { get; set; } = new List<FeedingDInput>();
|
||||
}
|
||||
|
||||
public class FeedingDInput
|
||||
{
|
||||
|
||||
public string material_id { get; set; }
|
||||
public string code_batch { get; set; }
|
||||
public string unit_id { get; set; }
|
||||
public decimal codeqty { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using JNPF.Common.Filter;
|
||||
|
||||
namespace Tnb.ProductionMgr.Entities.Dto
|
||||
{
|
||||
public class FeedingRecordInfoInput
|
||||
{
|
||||
public string id { get; set; }
|
||||
|
||||
public string type { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using JNPF.Common.Filter;
|
||||
|
||||
namespace Tnb.ProductionMgr.Entities.Dto
|
||||
{
|
||||
public class FeedingRecordInfoOutput
|
||||
{
|
||||
public string id { get; set; }
|
||||
|
||||
public string material_id { get; set; }
|
||||
|
||||
public string material_code { get; set; }
|
||||
|
||||
public string material_name { get; set; }
|
||||
|
||||
public decimal? num { get; set; }
|
||||
|
||||
public string unit_name { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using JNPF.Common.Filter;
|
||||
|
||||
namespace Tnb.ProductionMgr.Entities.Dto
|
||||
{
|
||||
public class FeedingRecordListInput : PageInputBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 工位id
|
||||
/// </summary>
|
||||
public string stationId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
|
||||
namespace Tnb.ProductionMgr.Entities.Dto
|
||||
{
|
||||
public class FeedingRecordListOutput
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string code { get; set; }
|
||||
public string type_name { get; set; }
|
||||
public string type { get; set; }
|
||||
public string create_name { get; set; }
|
||||
public string create_time { get; set; }
|
||||
public string status { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
@@ -26,6 +26,7 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
||||
{
|
||||
public string material_id { get; set; }
|
||||
public string material_code { get; set; }
|
||||
public string category_id { get; set; }
|
||||
public decimal? num { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user