29 lines
809 B
C#
29 lines
809 B
C#
namespace Tnb.ProductionMgr.Entities.Dto
|
|
{
|
|
public class MaterialOutstockInput
|
|
{
|
|
/// <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<MaterialOutstockDInput> details { get; set; } = new List<MaterialOutstockDInput>();
|
|
}
|
|
|
|
public class MaterialOutstockDInput
|
|
{
|
|
public string material_id { get; set; }
|
|
public string material_code { get; set; }
|
|
public string material_name { get; set; }
|
|
public decimal num { get; set; }
|
|
}
|
|
} |