LFlow/LFlow.User/Repositorys/UserRepo.cs

26 lines
858 B
C#
Raw Normal View History

2024-10-09 17:09:09 +08:00
using System;
2024-10-16 11:27:14 +08:00
using LFlow.Base.Default;
2024-10-09 17:09:09 +08:00
using LFlow.Base.Interfaces;
using LFlow.User.Model.DataModel;
using SqlSugar;
namespace LFlow.User.Repositorys;
2024-10-16 11:27:14 +08:00
public class UserRepo(ISqlSugarClient db) : DefaultCurdRepo<UserModel, string>(db)
2024-10-09 17:09: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<UserModel> Search(UserModel whereObj) => throw new NotImplementedException();
/// <summary>
/// 根据条件查询ID
/// </summary>
/// <param name="whereObj"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public override List<string> WhereSearchId(UserModel whereObj) => throw new NotImplementedException();
2024-10-09 17:09:09 +08:00
}