29 lines
891 B
C#
29 lines
891 B
C#
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<HomeModel, string>(db)
|
|
{
|
|
|
|
/// <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();
|
|
}
|