From 9f509856cb49f1e36ce370387b2ee7fc6810f414 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期一, 04 八月 2025 12:09:47 +0800 Subject: [PATCH] 公文管理打印排版修改 --- CY_ECommercePlatform/CY.Model/OA/OA_Document.cs | 35 +++++++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/CY_ECommercePlatform/CY.Model/OA/OA_Document.cs b/CY_ECommercePlatform/CY.Model/OA/OA_Document.cs index a3ccb8b..ebf03e2 100644 --- a/CY_ECommercePlatform/CY.Model/OA/OA_Document.cs +++ b/CY_ECommercePlatform/CY.Model/OA/OA_Document.cs @@ -34,6 +34,8 @@ private DateTime? _lastupdatetime; private string _operator; + public string BF_IsGongwen {get;set;} + /// <summary> /// 涓婚敭--鏍囪瘑ID /// </summary> @@ -230,6 +232,17 @@ _dm_printnumber = value; } } + + /// <summary> + /// 鍗板埛鏁伴噺 + /// </summary> + public int? Konghangshu + { + get; + + set; + + } /// <summary> /// 鍏枃鐣彿 /// </summary> @@ -313,6 +326,15 @@ { _operator = value; } + } + + + /// <summary> + /// 鎿嶄綔浜� + /// </summary> + public string Jusequanxian + { + get;set; } #endregion Model @@ -428,6 +450,19 @@ this.Operator = isChange ? MyConvert.ConvertToString(value) : Operator; theValue = this.Operator; } + else if ("Jusequanxian".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 21) + { + this.Jusequanxian = isChange ? MyConvert.ConvertToString(value) : Jusequanxian; + theValue = this.Jusequanxian; + } + else if ("Konghangshu".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 22) + { + this.Konghangshu = isChange ? MyConvert.ConvertToInt(value) : Konghangshu; + theValue = this.Konghangshu; + } + + + return theValue; } #endregion Visiter -- Gitblit v1.9.1