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/scene/ISceneBaseDAL.cs | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DAL/IDAL/IStation.IDAL.Core/scene/ISceneBaseDAL.cs b/DAL/IDAL/IStation.IDAL.Core/scene/ISceneBaseDAL.cs index 60f028a..12a3330 100644 --- a/DAL/IDAL/IStation.IDAL.Core/scene/ISceneBaseDAL.cs +++ b/DAL/IDAL/IStation.IDAL.Core/scene/ISceneBaseDAL.cs @@ -8,22 +8,22 @@ { public interface ISceneBaseDAL<T> where T : Entity.BaseEntity, new() { - #region Query + #region Get /// <summary> /// 鏌ヨ鍏ㄩ儴 /// </summary> - List<T> QueryAll(long projectId,long sceneId); + List<T> GetAll(long projectId,long sceneId); /// <summary> /// 鏍规嵁 Id鏌ヨ /// </summary> - T QueryById(long projectId, long sceneId, long Id); + T GetById(long projectId, long sceneId, long Id); /// <summary> /// 鏍规嵁 Id闆嗗悎鏌ヨ /// </summary> - List<T> QueryByIds(long projectId, long sceneId, IEnumerable<long> Ids); + List<T> GetByIds(long projectId, long sceneId, IEnumerable<long> Ids); #endregion -- Gitblit v1.9.3