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