From e8e3122fdc4844202fb9e05477d47139e47a8aae Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 12 十二月 2025 08:59:47 +0800
Subject: [PATCH] 作业本送货变二级菜单
---
CY_ECommercePlatform/CY.Model/OA/OA_Document.cs | 41 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/CY_ECommercePlatform/CY.Model/OA/OA_Document.cs b/CY_ECommercePlatform/CY.Model/OA/OA_Document.cs
index 15c97e3..1cf176a 100644
--- a/CY_ECommercePlatform/CY.Model/OA/OA_Document.cs
+++ b/CY_ECommercePlatform/CY.Model/OA/OA_Document.cs
@@ -34,6 +34,25 @@
private DateTime? _lastupdatetime;
private string _operator;
+ public string BF_IsGongwen {get;set;}
+
+
+ //1鏄�0鍚�
+ public int? Shifoushenpi { get; set; }
+
+
+ //1鏄�0鍚�
+ public string ShifoushenpiName { get {
+ if(Shifoushenpi.HasValue && Shifoushenpi.Value == 1)
+ {
+ return "鈭�";
+ }
+ else
+ {
+ return "脳";
+ }
+ } }
+
/// <summary>
/// 涓婚敭--鏍囪瘑ID
/// </summary>
@@ -229,6 +248,17 @@
{
_dm_printnumber = value;
}
+ }
+
+ /// <summary>
+ /// 鍗板埛鏁伴噺
+ /// </summary>
+ public int? Konghangshu
+ {
+ get;
+
+ set;
+
}
/// <summary>
/// 鍏枃鐣彿
@@ -442,6 +472,17 @@
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;
+ }
+ else if ("Shifoushenpi".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 23)
+ {
+ this.Shifoushenpi = isChange ? MyConvert.ConvertToInt(value) : Shifoushenpi;
+ theValue = this.Shifoushenpi;
+ }
+
return theValue;
}
--
Gitblit v1.9.1