修订了第二个版本

This commit is contained in:
2025-07-20 23:28:45 +08:00
parent 0cd0a0a99c
commit a7b0a5d108
14 changed files with 3529 additions and 128 deletions

View File

@@ -0,0 +1,13 @@
using AutoMapper;
using DMS.Core.Models;
using DMS.Infrastructure.Entities;
using DMS.Infrastructure.Repositories;
namespace DMS.Infrastructure.Services;
public class VarTableService : BaseService<VariableTable, DbVariableTable, VarTableRepository>
{
public VarTableService(IMapper mapper, VarTableRepository repository) : base(mapper, repository)
{
}
}