二维码采集项

This commit is contained in:
Administrator
2026-09-11 09:02:22 +08:00
parent 81ed6d576d
commit 5f0e524b0a
3 changed files with 80 additions and 1 deletions
+35
View File
@@ -1313,6 +1313,41 @@ namespace JinYuan.MES
tagCalculateResult = "",
tagRemark = "生产型号"
});
#region 二维码相关 by clm 20260910
datavolist.Add(new TagDataVOListItem()
{
tagCode = "QR_CODE_WIDTH",
tagValue = m.QrCodeWidth,
tagTime = DateTime.Now.ToString(),
tagCalculateResult = "",
tagRemark = "二维码宽度"
});
datavolist.Add(new TagDataVOListItem()
{
tagCode = "QR_CODE_HEIGHT",
tagValue = m.QrCodeHeight,
tagTime = DateTime.Now.ToString(),
tagCalculateResult = "",
tagRemark = "二维码高度"
});
datavolist.Add(new TagDataVOListItem()
{
tagCode = "QR_CODE_LEFT_DISTANCE",
tagValue = m.QrCodeTopMargin,
tagTime = DateTime.Now.ToString(),
tagCalculateResult = "",
tagRemark = "二维码左端距离"
});
datavolist.Add(new TagDataVOListItem()
{
tagCode = "QR_CODE_UP_DISTANCE",
tagValue = m.QrCodeLeftMargin,
tagTime = DateTime.Now.ToString(),
tagCalculateResult = "",
tagRemark = "二维码上端距离"
});
#endregion
}
#endregion