wanshenmean
2024-11-11 021edcd84d6601249e008141b3027549f864155f
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_DTO/MOM/ResponeAgingInputDto.cs
@@ -6,6 +6,9 @@
namespace WIDESEA_DTO.MOM
{
    /// <summary>
    /// 入库
    /// </summary>
    public class ResponeAgingInputDto : BasicResult
    {
        /// <summary>
@@ -19,8 +22,30 @@
        public string BindCode { get; set; }
        /// <summary>
        /// 生产产线
        /// </summary>
        public string ProductionLine { get; set; }
        /// <summary>
        /// 关联工序返回时间,记录注液或静置时长。
        /// </summary>
        public string LinedProcessFeedbackTime { get; set; }
        /// <summary>
        /// 参数版本信息
        /// </summary>
        public string ParamVersion { get; set; }
        /// <summary>
        /// 是否需要读取参数
        /// </summary>
        public bool ParamRefreshFlag { get; set; }
        /// <summary>
        /// 参数信息数组
        /// </summary>
        public List<ParameterInfoDto> ParameterInfo { get; set; } = new List<ParameterInfoDto>();
    }
}