ningshuxia
2023-02-24 1e4b358de58e36bfbf692ab2538ff9e7d60fd025
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