From 0dd76c2492f1afbe335b50a8ffb76e4af94271df Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 10 十月 2025 15:16:51 +0800
Subject: [PATCH] 新增设备 人员增加模糊查询 完成 日期默认当天 完成
---
CY_ECommercePlatform/CY.Model/OA/OA_Fukuanshenqing.cs | 19 ++++++++++++++-----
1 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/CY_ECommercePlatform/CY.Model/OA/OA_Fukuanshenqing.cs b/CY_ECommercePlatform/CY.Model/OA/OA_Fukuanshenqing.cs
index 811d66e..bb21a5d 100644
--- a/CY_ECommercePlatform/CY.Model/OA/OA_Fukuanshenqing.cs
+++ b/CY_ECommercePlatform/CY.Model/OA/OA_Fukuanshenqing.cs
@@ -43,7 +43,8 @@
/// <summary>
/// 瀹㈡埛id
/// </summary>
- public int SupplierId { get; set; }
+ public string SupplierId { get; set; }
+
/// <summary>
/// 瀹㈡埛id
/// </summary>
@@ -60,6 +61,8 @@
public int? ApprovalStatus { get; set; }
public decimal? Fukuanmoney { get; set; }
+
+ public decimal? Molingmoney { get; set; }
public decimal? Yishoumoney { get; set; }
@@ -153,8 +156,10 @@
get;
set;
}
-
-
+ /// <summary>
+ /// 淇敼鏃堕棿
+ /// </summary>
+ public string WorkPlanId { get; set; }
#endregion Model
@@ -185,7 +190,7 @@
}
else if ("SupplierId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 3)
{
- this.SupplierId = isChange ? MyConvert.ConvertToInt32(value).Value : SupplierId;
+ this.SupplierId = isChange ? MyConvert.ConvertToString(value) : SupplierId;
theValue = this.SupplierId;
}
else if ("SupplierName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 4)
@@ -284,7 +289,11 @@
this.DindanId = isChange ? MyConvert.ConvertToString(value) : DindanId;
theValue = this.DindanId;
}
-
+ else if ("Molingmoney".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 28)
+ {
+ this.Molingmoney = isChange ? MyConvert.ConvertToDecimal(value) : Molingmoney;
+ theValue = this.Molingmoney;
+ }
return theValue;
}
--
Gitblit v1.9.1