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