using AutoMapper;
using DMS.Core.Models;
using DMS.Infrastructure.Interfaces;
using DMS.Infrastructure.Entities;
using DMS.Infrastructure.Data;
namespace DMS.Infrastructure.Repositories;
///
/// 用户仓储类,用于操作DbUser实体
///
public class UserRepository : BaseRepository
{
public UserRepository(SqlSugarDbContext dbContext)
: base(dbContext)
{
}
}