LFlow/LFlow.Home/Repositorys/HomeRepo.cs

29 lines
891 B
C#
Raw Normal View History

2024-10-09 14:45:09 +08:00
using System;
2024-10-16 11:27:14 +08:00
using LFlow.Base.Default;
2024-10-09 14:45:09 +08:00
using LFlow.Base.Interfaces;
// using LFlow.Interfaces;
using LFlow.Home.Models.DataModels;
2024-10-09 17:10:05 +08:00
using SqlSugar;
2024-10-09 14:45:09 +08:00
namespace LFlow.Home.Repositorys;
2024-10-16 11:27:14 +08:00
public class HomeRepo(ISqlSugarClient db) : DefaultCurdRepo<HomeModel, string>(db)
2024-10-09 14:45:09 +08:00
{
2024-10-16 11:27:14 +08:00
/// <summary>
/// 查询
/// </summary>
/// <param name="whereObj"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public override List<HomeModel> Search(HomeModel whereObj) => throw new NotImplementedException();
/// <summary>
/// 根据条件查询ID
/// </summary>
/// <param name="whereObj"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public override List<string> WhereSearchId(HomeModel whereObj) => throw new NotImplementedException();
2024-10-09 14:45:09 +08:00
}