This commit is contained in:
2026-05-30 14:42:28 +08:00
parent 0215d2017e
commit 08dbe049ee
@@ -145,8 +145,26 @@ namespace FineUIPro.Web.HJGL.JoinMarking
} }
if (tb1 != null) if (tb1 != null)
{ {
int i = 0;
foreach (DataRow row in tb1.Rows) foreach (DataRow row in tb1.Rows)
{ {
i++;
if (i%4 == 1)
{
row["JOT_JointStatus"] = "正常";
}
else if (i % 4 == 2)
{
row["JOT_JointStatus"] = "扩透";
}
else if (i % 4 == 3)
{
row["JOT_JointStatus"] = "点口";
}
else if (i % 4 == 0)
{
row["JOT_JointStatus"] = "已切除";
}
string JOT_ID = row["JOT_ID"].ToString(); string JOT_ID = row["JOT_ID"].ToString();
if (DetectionTypeDic.ContainsKey(JOT_ID)) if (DetectionTypeDic.ContainsKey(JOT_ID))
{ {