2025-07-19 11:11:01 +08:00
|
|
|
|
using AutoMapper;
|
|
|
|
|
|
using DMS.Core.Models;
|
|
|
|
|
|
using DMS.Infrastructure.Interfaces;
|
2025-07-18 22:21:16 +08:00
|
|
|
|
using DMS.Infrastructure.Entities;
|
2025-07-19 09:25:01 +08:00
|
|
|
|
using DMS.Infrastructure.Data;
|
2025-07-03 08:17:27 +08:00
|
|
|
|
|
2025-07-18 22:21:16 +08:00
|
|
|
|
namespace DMS.Infrastructure.Repositories;
|
2025-07-03 08:17:27 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 用户仓储类,用于操作DbUser实体
|
|
|
|
|
|
/// </summary>
|
2025-07-19 14:36:34 +08:00
|
|
|
|
public class UserRepository : BaseRepository<DbUser>
|
2025-07-03 08:17:27 +08:00
|
|
|
|
{
|
2025-07-19 14:36:34 +08:00
|
|
|
|
public UserRepository(SqlSugarDbContext dbContext)
|
|
|
|
|
|
: base(dbContext)
|
2025-07-03 08:17:27 +08:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|