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