From 0aa54059b26e6641196e9953490dd18616e916e3 Mon Sep 17 00:00:00 2001
From: 啊鑫 <t2856754968@163.com>
Date: 星期三, 10 九月 2025 17:26:47 +0800
Subject: [PATCH] 精简修正代码

---
 entity/ErpMesKc.cs |   18 ++++++------------
 1 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/entity/ErpMesKc.cs b/entity/ErpMesKc.cs
index 93af660..35c9b96 100644
--- a/entity/ErpMesKc.cs
+++ b/entity/ErpMesKc.cs
@@ -11,11 +11,9 @@
     [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)]
     public Guid ID { get; set; }
 
-    [SugarColumn(ColumnName = "FNUMBER")]
-    public string? FNumber { get; set; }
+    [SugarColumn(ColumnName = "FNUMBER")] public string? FNumber { get; set; }
 
-    [SugarColumn(ColumnName = "FQTY")]
-    public decimal? FQty { get; set; }
+    [SugarColumn(ColumnName = "FQTY")] public decimal? FQty { get; set; }
 
     [SugarColumn(ColumnName = "FBASEUNIT")]
     public string? FBaseUnit { get; set; }
@@ -23,17 +21,14 @@
     [SugarColumn(ColumnName = "FSTOCKUNIT")]
     public string? FStockUnit { get; set; }
 
-    [SugarColumn(ColumnName = "FSTOCKID")]
-    public string? FStockId { get; set; }
+    [SugarColumn(ColumnName = "FSTOCKID")] public string? FStockId { get; set; }
 
     [SugarColumn(ColumnName = "CREATE_DATE")]
     public DateTime? CreateDate { get; set; }
 
-    [SugarColumn(ColumnName = "FBATCHNO")]
-    public string? FBatchno { get; set; }
+    [SugarColumn(ColumnName = "FBATCHNO")] public string? FBatchno { get; set; }
 
-    [SugarColumn(ColumnName = "FMTONO")]
-    public string? FMtono { get; set; }
+    [SugarColumn(ColumnName = "FMTONO")] public string? FMtono { get; set; }
 
     [SugarColumn(ColumnName = "FSTOCKSTATUS")]
     public string? FStockStatus { get; set; }
@@ -46,5 +41,4 @@
 
     [SugarColumn(ColumnName = "FSTOCKORGID")]
     public decimal? FStockOrgId { get; set; }
-
-}
+}
\ No newline at end of file

--
Gitblit v1.9.3