From 1e4b358de58e36bfbf692ab2538ff9e7d60fd025 Mon Sep 17 00:00:00 2001
From: ningshuxia <ningshuxia0927@outlook.com>
Date: 星期五, 24 二月 2023 14:11:17 +0800
Subject: [PATCH] 曲线筛查

---
 DAL/IDAL/IStation.IDAL.Core/base/IBaseDAL.cs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/DAL/IDAL/IStation.IDAL.Core/base/IBaseDAL.cs b/DAL/IDAL/IStation.IDAL.Core/base/IBaseDAL.cs
index 697c32c..d308eec 100644
--- a/DAL/IDAL/IStation.IDAL.Core/base/IBaseDAL.cs
+++ b/DAL/IDAL/IStation.IDAL.Core/base/IBaseDAL.cs
@@ -8,22 +8,22 @@
 {
     public interface IBaseDAL<T> where T : Entity.BaseEntity, new()
     {
-        #region Query
+        #region Get
 
         /// <summary>
         /// 鏌ヨ鍏ㄩ儴
         /// </summary>
-        List<T> QueryAll();
+        List<T> GetAll();
 
         /// <summary>
         /// 鏍规嵁 Id鏌ヨ
         /// </summary>
-        T QueryById(long Id);
+        T GetById(long Id);
 
         /// <summary>
         /// 鏍规嵁 Id闆嗗悎鏌ヨ
         /// </summary> 
-        List<T> QueryByIds(IEnumerable<long> Ids);
+        List<T> GetByIds(IEnumerable<long> Ids);
 
         #endregion
 

--
Gitblit v1.9.3