14 lines
409 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|