From 79e43ccffd15afcd99934ee43b706f6133398079 Mon Sep 17 00:00:00 2001 From: 啊鑫 <t2856754968@163.com> Date: 星期一, 07 七月 2025 15:29:56 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- MES.Service/Modes/MesCgsq.cs | 134 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 134 insertions(+), 0 deletions(-) diff --git a/MES.Service/Modes/MesCgsq.cs b/MES.Service/Modes/MesCgsq.cs new file mode 100644 index 0000000..6059104 --- /dev/null +++ b/MES.Service/Modes/MesCgsq.cs @@ -0,0 +1,134 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Linq; +using SqlSugar; +namespace MES.Service.Modes +{ + /// <summary> + /// + ///</summary> + [SugarTable("MES_CGSQ")] + public class Cgsq + { + /// <summary> + /// + ///</summary> + [SugarColumn(ColumnName="ERPID", IsPrimaryKey = true)] + public decimal? ERPID { get; set; } + /// <summary> + /// 鍗曟嵁绫诲瀷 + ///</summary> + [SugarColumn(ColumnName="FBILLTYPEID" )] + public string? Fbilltypeid { get; set; } + /// <summary> + /// 鍗曟嵁缂栧彿 + ///</summary> + [SugarColumn(ColumnName="FBILLNO" )] + public string? Fbillno { get; set; } + /// <summary> + /// 鐢宠鏃ユ湡 + ///</summary> + [SugarColumn(ColumnName="FAPPLICATIONDATE" )] + public DateTime? Fapplicationdate { get; set; } + /// <summary> + /// 鐢宠绫诲瀷 + ///</summary> + [SugarColumn(ColumnName="FREQUESTTYPE" )] + public string? Frequesttype { get; set; } + /// <summary> + /// 娌诲叿妯″叿鍔犲伐鍙婇噰璐� + ///</summary> + [SugarColumn(ColumnName="F_UNW_COMBO_ZJMJ" )] + public string? FUnwComboZjmj { get; set; } + /// <summary> + /// 鐢宠缁勭粐 + ///</summary> + [SugarColumn(ColumnName="APPLYING_ORGANIZATION_ID" )] + public string? ApplyingOrganizationId { get; set; } + /// <summary> + /// 鐢宠閮ㄩ棬 + ///</summary> + [SugarColumn(ColumnName="FAPPLICATIONDEPTID" )] + public string? Fapplicationdeptid { get; set; } + /// <summary> + /// 鐢宠浜� + ///</summary> + [SugarColumn(ColumnName="FAPPLICANTID" )] + public string? Fapplicantid { get; set; } + /// <summary> + /// 甯佸埆 + ///</summary> + [SugarColumn(ColumnName="FCURRENCYID" )] + public string? Fcurrencyid { get; set; } + /// <summary> + /// 楠屾敹鏂瑰紡 + ///</summary> + [SugarColumn(ColumnName="FACCTYPE" )] + public string? Facctype { get; set; } + /// <summary> + /// 鍗曟嵁鐘舵�� + ///</summary> + [SugarColumn(ColumnName="FDOCUMENTSTATUS" )] + public string? Fdocumentstatus { get; set; } + /// <summary> + /// 澶囨敞 + ///</summary> + [SugarColumn(ColumnName="FNOTE" )] + public string? Fnote { get; set; } + /// <summary> + /// 鍒涘缓浜� + ///</summary> + [SugarColumn(ColumnName="FCREATORID" )] + public string? Fcreatorid { get; set; } + /// <summary> + /// 鍒涘缓鏃ユ湡 + ///</summary> + [SugarColumn(ColumnName="FCREATEDATE" )] + public DateTime? Fcreatedate { get; set; } + /// <summary> + /// 瀹℃牳浜� + ///</summary> + [SugarColumn(ColumnName="FAPPROVERID" )] + public string? Fapproverid { get; set; } + /// <summary> + /// 瀹℃牳鏃ユ湡 + ///</summary> + [SugarColumn(ColumnName="FAPPROVEDATE" )] + public DateTime? Fapprovedate { get; set; } + /// <summary> + /// 鍏抽棴鐘舵�� + ///</summary> + [SugarColumn(ColumnName="FCLOSESTATUS" )] + public string? Fclosestatus { get; set; } + /// <summary> + /// 鍏抽棴鏃ユ湡 + ///</summary> + [SugarColumn(ColumnName="FCLOSEDATE" )] + public DateTime? Fclosedate { get; set; } + /// <summary> + /// 鍏抽棴浜� + ///</summary> + [SugarColumn(ColumnName="FCLOSERID" )] + public string? Fcloserid { get; set; } + /// <summary> + /// 鍏抽棴鍘熷洜 + ///</summary> + [SugarColumn(ColumnName="FCLOSEREASON" )] + public string? Fclosereason { get; set; } + /// <summary> + /// 淇悗淇敼浜� + ///</summary> + [SugarColumn(ColumnName="FMODIFIERID" )] + public string? Fmodifierid { get; set; } + /// <summary> + /// 淇悗淇敼鏃ユ湡 + ///</summary> + [SugarColumn(ColumnName="FMODIFYDATE" )] + public DateTime? Fmodifydate { get; set; } + /// <summary> + /// 鎵嬪伐鍏抽棴 + ///</summary> + [SugarColumn(ColumnName="FMANUALCLOSE" )] + public string? Fmanualclose { get; set; } + } +} -- Gitblit v1.9.3