From c8a9ab01f01ffdf522a5f174d684aff7722a9679 Mon Sep 17 00:00:00 2001 From: xwt <2740516069@qq.com> Date: 星期四, 17 七月 2025 14:32:10 +0800 Subject: [PATCH] 来料检获取附件信息 --- StandardInterface/MES.Service/Modes/MesQamftp.cs | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 54 insertions(+), 0 deletions(-) diff --git a/StandardInterface/MES.Service/Modes/MesQamftp.cs b/StandardInterface/MES.Service/Modes/MesQamftp.cs new file mode 100644 index 0000000..29c0519 --- /dev/null +++ b/StandardInterface/MES.Service/Modes/MesQamftp.cs @@ -0,0 +1,54 @@ +using System; +using SqlSugar; + +namespace MES.Service.Modes +{ + [SugarTable("MES_QAMFTP")] + public class MesQamftp + { + [SugarColumn(ColumnName = "ID")] + public decimal Id { get; set; } + + [SugarColumn(ColumnName = "ITEM_NO")] + public string ItemNo { get; set; } + + [SugarColumn(ColumnName = "FTYPE")] + public string Ftype { get; set; } + + [SugarColumn(ColumnName = "FATTACH")] + public string Fattach { get; set; } + + [SugarColumn(ColumnName = "FVERSION")] + public string Fversion { get; set; } + + [SugarColumn(ColumnName = "FDATE")] + public string Fdate { get; set; } + + [SugarColumn(ColumnName = "CREATE_BY")] + public string CreateBy { get; set; } + + [SugarColumn(ColumnName = "CREATE_DATE")] + public string CreateDate { get; set; } + + [SugarColumn(ColumnName = "COMPANY")] + public string Company { get; set; } + + [SugarColumn(ColumnName = "FACTORY")] + public string Factory { get; set; } + + [SugarColumn(ColumnName = "RELEASE_NO")] + public string ReleaseNo { get; set; } + + [SugarColumn(ColumnName = "F_TYPE")] + public int? F_type { get; set; } + + [SugarColumn(ColumnName = "LASTUPDATE_BY")] + public string LastupdateBy { get; set; } + + [SugarColumn(ColumnName = "LASTUPDATE_DATE")] + public DateTime? LastupdateDate { get; set; } + + [SugarColumn(ColumnName = "ITEM_ID")] + public decimal? ItemId { get; set; } + } +} \ No newline at end of file -- Gitblit v1.9.3