一般出库申请
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
namespace Tnb.ProductionMgr.Entities.Dto
|
||||
{
|
||||
public class GeneralOutstockInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 目标库位编号
|
||||
/// </summary>
|
||||
public string location_code { get; set; } = string.Empty;
|
||||
|
||||
/// 所属工位
|
||||
/// </summary>
|
||||
public string? workstation_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 任务单
|
||||
/// </summary>
|
||||
public string? mo_task_id { get; set; }
|
||||
|
||||
public List<GeneralOutstockDInput> details { get; set; } = new List<GeneralOutstockDInput>();
|
||||
}
|
||||
|
||||
public class GeneralOutstockDInput
|
||||
{
|
||||
public string material_id { get; set; }
|
||||
public string material_code { get; set; }
|
||||
public string material_name { get; set; }
|
||||
public decimal num { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user