2025-07-15 22:18:37 +08:00
|
|
|
using AutoMapper;
|
2025-07-19 09:25:01 +08:00
|
|
|
using DMS.Core.Models;
|
2025-07-19 11:11:01 +08:00
|
|
|
using DMS.Infrastructure.Interfaces;
|
|
|
|
|
using DMS.Infrastructure.Entities;
|
|
|
|
|
using System.Diagnostics;
|
2025-07-19 09:25:01 +08:00
|
|
|
using DMS.Infrastructure.Data;
|
2025-07-02 12:01:20 +08:00
|
|
|
|
2025-07-18 22:21:16 +08:00
|
|
|
namespace DMS.Infrastructure.Repositories;
|
2025-07-02 12:01:20 +08:00
|
|
|
|
2025-07-19 19:55:42 +08:00
|
|
|
public class VarTableRepository : BaseRepository<DbVariableTable>, IVarTableRepository
|
2025-07-02 12:01:20 +08:00
|
|
|
{
|
2025-07-19 14:36:34 +08:00
|
|
|
public VarTableRepository(SqlSugarDbContext dbContext)
|
|
|
|
|
: base(dbContext)
|
2025-07-15 22:18:37 +08:00
|
|
|
{
|
|
|
|
|
}
|
2025-07-03 13:53:29 +08:00
|
|
|
|
2025-07-16 18:39:00 +08:00
|
|
|
|
2025-07-02 22:07:16 +08:00
|
|
|
}
|