using System; using LFlow.Base.Default; using LFlow.Base.Interfaces; // using LFlow.Interfaces; using LFlow.Home.Models.DataModels; using SqlSugar; namespace LFlow.Home.Repositorys; public class HomeRepo(ISqlSugarClient db) : DefaultCurdRepo(db) { /// /// 查询 /// /// /// /// public override List Search(HomeModel whereObj) => throw new NotImplementedException(); /// /// 根据条件查询ID /// /// /// /// public override List WhereSearchId(HomeModel whereObj) => throw new NotImplementedException(); }