ningshuxia
2023-02-24 1e4b358de58e36bfbf692ab2538ff9e7d60fd025
DAL/IDAL/IStation.IDAL.Core/project/IProjectDAL.cs
@@ -8,22 +8,22 @@
{
    public interface IProjectDAL<T> where T : Entity.BaseEntity, new()
    {
        #region Query
        #region Get
        /// <summary>
        /// 查询全部
        /// </summary>
        List<T> QueryAll(long projectId);
        List<T> GetAll(long projectId);
        /// <summary>
        /// 根据 Id查询
        /// </summary>
        T QueryById(long projectId, long Id);
        T GetById(long projectId, long Id);
        /// <summary>
        /// 根据 Id集合查询
        /// </summary> 
        List<T> QueryByIds(long projectId, IEnumerable<long> Ids);
        List<T> GetByIds(long projectId, IEnumerable<long> Ids);
        #endregion