26 lines
858 B
C#
26 lines
858 B
C#
using System;
|
|
using LFlow.Base.Default;
|
|
using LFlow.Base.Interfaces;
|
|
using LFlow.User.Model.DataModel;
|
|
using SqlSugar;
|
|
|
|
namespace LFlow.User.Repositorys;
|
|
|
|
public class UserRepo(ISqlSugarClient db) : DefaultCurdRepo<UserModel, string>(db)
|
|
{
|
|
/// <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();
|
|
}
|