From 4422008672f79f74841e11f20430c5e76686e293 Mon Sep 17 00:00:00 2001 From: schangxiang@126.com <schangxiang@126.com> Date: 周四, 19 12月 2024 10:33:46 +0800 Subject: [PATCH] 修复 hmid更改合格状态,没清理 不合格原因的问题 --- DataCapture/iWare_SCADA_DataCapture/iWare_SCADA_Model/TableModel/QualityDataInfo.cs | 67 +++++++++++++++++++++++++++++++++ 1 files changed, 67 insertions(+), 0 deletions(-) diff --git a/DataCapture/iWare_SCADA_DataCapture/iWare_SCADA_Model/TableModel/QualityDataInfo.cs b/DataCapture/iWare_SCADA_DataCapture/iWare_SCADA_Model/TableModel/QualityDataInfo.cs index c6bd10e..a7ff257 100644 --- a/DataCapture/iWare_SCADA_DataCapture/iWare_SCADA_Model/TableModel/QualityDataInfo.cs +++ b/DataCapture/iWare_SCADA_DataCapture/iWare_SCADA_Model/TableModel/QualityDataInfo.cs @@ -302,6 +302,73 @@ #endregion + #region 新增 不合格原因 【Editby shaocx,2024-06-26】 + + /// OP10质量不合格原因类型,枚举QualityNoOkEnum 【Editby shaocx,2024-06-26】 + /// </summary> + public int? QualityNoOk_OP10 { get; set; } + + /// <summary> + /// OP10质量不合格原因 【Editby shaocx,2024-06-26】 + /// </summary> + public string QualityNoOkReason_OP10 { get; set; } + + /// OP20质量不合格原因类型,枚举QualityNoOkEnum 【Editby shaocx,2024-06-26】 + /// </summary> + public int? QualityNoOk_OP20 { get; set; } + + /// <summary> + /// OP20质量不合格原因 【Editby shaocx,2024-06-26】 + /// </summary> + public string QualityNoOkReason_OP20 { get; set; } + + /// OP30质量不合格原因类型,枚举QualityNoOkEnum 【Editby shaocx,2024-06-26】 + /// </summary> + public int? QualityNoOk_OP30 { get; set; } + + /// <summary> + /// OP30质量不合格原因 【Editby shaocx,2024-06-26】 + /// </summary> + public string QualityNoOkReason_OP30 { get; set; } + + /// OP35质量不合格原因类型,枚举QualityNoOkEnum 【Editby shaocx,2024-06-26】 + /// </summary> + public int? QualityNoOk_OP35 { get; set; } + + /// <summary> + /// OP35质量不合格原因 【Editby shaocx,2024-06-26】 + /// </summary> + public string QualityNoOkReason_OP35 { get; set; } + + /// OP40质量不合格原因类型,枚举QualityNoOkEnum 【Editby shaocx,2024-06-26】 + /// </summary> + public int? QualityNoOk_OP40 { get; set; } + + /// <summary> + /// OP40质量不合格原因 【Editby shaocx,2024-06-26】 + /// </summary> + public string QualityNoOkReason_OP40 { get; set; } + + + /// OP60质量不合格原因类型,枚举QualityNoOkEnum 【Editby shaocx,2024-06-26】 + /// </summary> + public int? QualityNoOk_OP60 { get; set; } + + /// <summary> + /// OP60质量不合格原因 【Editby shaocx,2024-06-26】 + /// </summary> + public string QualityNoOkReason_OP60 { get; set; } + + /// OP80质量不合格原因类型,枚举QualityNoOkEnum 【Editby shaocx,2024-06-26】 + /// </summary> + public int? QualityNoOk_OP80 { get; set; } + + /// <summary> + /// OP80质量不合格原因 【Editby shaocx,2024-06-26】 + /// </summary> + public string QualityNoOkReason_OP80 { get; set; } + + #endregion } /// <summary> -- Gitblit v1.9.3