From 65438b8c1f9ec323c3c2ae265561dae4ff536379 Mon Sep 17 00:00:00 2001 From: xwt <2740516069@qq.com> Date: 星期四, 19 六月 2025 14:20:54 +0800 Subject: [PATCH] Merge branch 'master' of http://43.142.96.171:8080/r/~yhj/HM_JK --- StandardInterface/MES.Service/Modes/IqcBefore.cs | 34 ++++++++++++++++++++++++++++++++++ 1 files changed, 34 insertions(+), 0 deletions(-) diff --git a/StandardInterface/MES.Service/Modes/IqcBefore.cs b/StandardInterface/MES.Service/Modes/IqcBefore.cs new file mode 100644 index 0000000..44934dc --- /dev/null +++ b/StandardInterface/MES.Service/Modes/IqcBefore.cs @@ -0,0 +1,34 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using SqlSugar; +namespace MES.Service.Modes +{ + /// <summary> + /// + ///</summary> + [SugarTable("IQC_BEFORE")] + public class IqcBefore + { + /// <summary> + /// + ///</summary> + [SugarColumn(ColumnName="ID" ,IsPrimaryKey = true )] + public decimal Id { get; set; } + /// <summary> + /// + ///</summary> + [SugarColumn(ColumnName="SID" )] + public decimal? Sid { get; set; } + /// <summary> + /// + ///</summary> + [SugarColumn(ColumnName="ITEM_ID" )] + public decimal? ItemId { get; set; } + /// <summary> + /// + ///</summary> + [SugarColumn(ColumnName="PID" )] + public decimal? Pid { get; set; } + } +} -- Gitblit v1.9.3