using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEA_DTO.MOM
|
{
|
public class ResponeAgingInputDto : BasicResult
|
{
|
/// <summary>
|
/// 料框属性,用于标识料框的唯一属性。
|
/// </summary>
|
public string TrayBarcodeProperty { get; set; }
|
|
/// <summary>
|
/// 工单编码或产品型号,用于关联具体的生产任务。
|
/// </summary>
|
public string BindCode { get; set; }
|
|
/// <summary>
|
/// 关联工序返回时间,记录注液或静置时长。
|
/// </summary>
|
public string LinedProcessFeedbackTime { get; set; }
|
}
|
}
|