From ff39bbf7e3a3d02f7f051ce1bee06cec007be3ff Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期六, 30 十一月 2024 13:15:26 +0800
Subject: [PATCH] epa 计算节点局部损失字段修改

---
 Service/HStation.Service.Xhs.Core/04-dal/03-sqlite/XhsProject.cs |   28 ----------------------------
 1 files changed, 0 insertions(+), 28 deletions(-)

diff --git a/Service/HStation.Service.Xhs.Core/04-dal/03-sqlite/XhsProject.cs b/Service/HStation.Service.Xhs.Core/04-dal/03-sqlite/XhsProject.cs
index a508240..7e4b43d 100644
--- a/Service/HStation.Service.Xhs.Core/04-dal/03-sqlite/XhsProject.cs
+++ b/Service/HStation.Service.Xhs.Core/04-dal/03-sqlite/XhsProject.cs
@@ -138,34 +138,6 @@
         }
 
         /// <summary>
-        /// 鏇存柊寮�濮嬫椂闂�
-        /// </summary>
-        public virtual bool UpdateStartTime(long ID, DateTime StartTime)
-        {
-            using (SqlSugarClient db = new(ConnectionConfig))
-            {
-                return db.Updateable<Entity.XhsProject>()
-                    .SetColumns(x => x.StartTime == StartTime)
-                    .Where(x => x.ID == ID)
-                    .ExecuteCommand() > 0;
-            }
-        }
-
-        /// <summary>
-        /// 鏇存柊缁撴潫鏃堕棿
-        /// </summary>
-        public virtual bool UpdateEndTime(long ID, DateTime EndTime)
-        {
-            using (SqlSugarClient db = new(ConnectionConfig))
-            {
-                return db.Updateable<Entity.XhsProject>()
-                    .SetColumns(x => x.EndTime == EndTime)
-                    .Where(x => x.ID == ID)
-                    .ExecuteCommand() > 0;
-            }
-        }
-
-        /// <summary>
         /// 閫氳繃 ID 鍒犻櫎 锛堟嫇灞曪級
         /// </summary>
         public bool DeleteExByID(long ID)

--
Gitblit v1.9.3