diff --git a/LFlow.Base/Interfaces/IService.cs b/LFlow.Base/Interfaces/IService.cs
index 9df561d..ec87f50 100644
--- a/LFlow.Base/Interfaces/IService.cs
+++ b/LFlow.Base/Interfaces/IService.cs
@@ -1,17 +1,9 @@
-using LFlow.Base.Utils;
-
namespace LFlow.Base.Interfaces;
///
/// ·þÎñ½Ó¿Ú
///
///
-public interface IService where T : class, IModel, new()
+public interface IService// where T : class, IModel, new()
{
- T GetById(string id);
- List Search(T whereObj);
- int DeleteById(string id);
- T Save(T entity, bool isUpdate);
-
- PagedApiResult> GetAll(int pageIndex, int pageSize);
}