From c3dab3908d307997738498f2cd1d80cfaeced4b1 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 20 三月 2026 16:34:20 +0800
Subject: [PATCH] 提交
---
CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs | 70 +++++++++++++++++++++++++++++++++++
1 files changed, 70 insertions(+), 0 deletions(-)
diff --git a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
index 1aa25b2..2b4e16b 100644
--- a/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
+++ b/CY_ECommercePlatform/CY.Model/OA/OA_DeliverPlan.cs
@@ -73,6 +73,8 @@
public int? fapiaoshuliang { get; set; }
+ public string fapiaoshuliangName { get; set; }
+
/// <summary>
@@ -347,6 +349,16 @@
set;
}
+
+ /// <summary>
+ /// 鍌璁板綍
+ /// </summary>
+ public string Cuikuanjilu
+ {
+ get;
+ set;
+ }
+
/// <summary>
/// 鏈粯娆�
/// </summary>
@@ -356,6 +368,16 @@
{
return SumPrice.HasValue && PayedMoney.HasValue ? (SumPrice - PayedMoney).Value : 0;
}
+ }
+
+
+ /// <summary>
+ /// 鏈粯娆�
+ /// </summary>
+ public decimal? OrAllUnPayedMoney
+ {
+ get;
+ set;
}
/// <summary>
@@ -477,6 +499,34 @@
}
public string Wanjieren
+ {
+ get;
+ set;
+ }
+
+
+
+ public int? Chulistatus
+ {
+ get;
+ set;
+ }
+ public string ChulistatusName
+ {
+ get
+ {
+ return Chulistatus.HasValue && Chulistatus.Value == 1 ? "鈭�" : "脳";
+ }
+
+ }
+
+ public DateTime? ChuliTime
+ {
+ get;
+ set;
+ }
+
+ public string Chuliren
{
get;
set;
@@ -895,6 +945,26 @@
this.Zerenoperater = isChange ? MyConvert.ConvertToString(value) : Zerenoperater;
theValue = this.Zerenoperater;
}
+ else if ("OrAllUnPayedMoney".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 71)
+ {
+ this.OrAllUnPayedMoney = isChange ? MyConvert.ConvertToDecimal(value) : OrAllUnPayedMoney;
+ theValue = this.OrAllUnPayedMoney;
+ }
+ else if ("Chulistatus".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 72)
+ {
+ this.Chulistatus = isChange ? MyConvert.ConvertToInt32(value) : Chulistatus;
+ theValue = this.Chulistatus;
+ }
+ else if ("ChuliTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 73)
+ {
+ this.ChuliTime = isChange ? MyConvert.ConvertToDateTime(value) : ChuliTime;
+ theValue = this.ChuliTime;
+ }
+ else if ("Chuliren".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 74)
+ {
+ this.Chuliren = isChange ? MyConvert.ConvertToString(value) : Chuliren;
+ theValue = this.Chuliren;
+ }
--
Gitblit v1.9.1