27 lines
635 B
C#
27 lines
635 B
C#
namespace Tnb.ProductionMgr.Entities.Dto
|
|
{
|
|
public class KittingOutNewInput
|
|
{
|
|
|
|
/// <summary>
|
|
/// 目标库位编号
|
|
/// </summary>
|
|
public string location_code { get; set; } = string.Empty;
|
|
|
|
|
|
/// <summary>
|
|
/// 齐套搭配方案ID
|
|
/// </summary>
|
|
public string collocation_scheme_id { get; set; } = string.Empty;
|
|
|
|
/// 所属工位
|
|
/// </summary>
|
|
public string? workstation_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务单
|
|
/// </summary>
|
|
public string? mo_task_id { get; set; }
|
|
|
|
}
|
|
} |