返回mes的总结果用1、0表示

This commit is contained in:
Administrator
2026-09-02 14:48:33 +08:00
parent d4341a62d4
commit 21f1ff835c
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -261,9 +261,9 @@ namespace JinYuan.Models
public int Flag1 { get; set; }
/// <summary>
/// 所有CCD采集项综合结果(OK/NG)
/// 所有CCD采集项综合结果(OK/NG), OK: 1, NG: 0
/// </summary>
[SugarColumn(IsIgnore = true)]
public string IsAllCcdOK { get; set; } = "NG";
public int IsAllCcdOK { get; set; } = 0;
}
}