Files
2026-09-02 16:31:50 +08:00

14 lines
409 B
C#

using JSMachine.WMS.Domain.IRepository;
using JSMachine.WMS.Infrastructure.Helper;
using SqlSugar;
namespace JSMachine.WMS.Domain.Repository
{
public class BccBaseRepository<TAggregateRoot> : BaseRepository<TAggregateRoot> where TAggregateRoot : AggregateRoot, IAggregateRoot, new()
{
public BccBaseRepository(SqlSugarScope sqlSugarScope) : base(sqlSugarScope)
{
}
}
}