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