13 lines
357 B
C#
13 lines
357 B
C#
using JSMachine.WMS.Domain.Entity;
|
|
using JSMachine.WMS.Domain.IRepository;
|
|
using SqlSugar;
|
|
|
|
namespace JSMachine.WMS.Domain.Repository
|
|
{
|
|
public class OperationLogRepository : BccBaseRepository<OperationLog>, IOperationLogRepository
|
|
{
|
|
public OperationLogRepository(SqlSugarScope sqlSugarScope) : base(sqlSugarScope)
|
|
{
|
|
}
|
|
}
|
|
} |