Files
DMS/DMS.Infrastructure/Repositories/UserRepository.cs

18 lines
414 B
C#
Raw Normal View History

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