20 lines
671 B
C#
20 lines
671 B
C#
using JSMachine.WMS.App.ServiceImpl;
|
|||
|
|
using JSMachine.WMS.Application.Dto;
|
||
|
|
using JSMachine.WMS.Application.IService;
|
||
|
|
using JSMachine.WMS.Domain.Entity;
|
||
|
|
using JSMachine.WMS.Domain.IRepository;
|
||
|
|
|
||
|
|
namespace JSMachine.WMS.Application.ServiceImpl
|
||
|
|
{
|
||
|
|
public class OperationLogService : BaseService<OperationLogDto, OperationLog>, IOperationLogService
|
||
|
|
{
|
||
|
|
private readonly IOperationLogRepository _operationLogRepository;
|
||
|
|
|
||
|
|
public OperationLogService(IOperationLogRepository repository) : base(repository)
|
||
|
|
{
|
||
|
|
_operationLogRepository = repository;
|
||
|
|
}
|
||
|
|
|
||
|
|
// 可根据业务需求添加自定义操作方法
|
||
|
|
}
|
||
|
|
}
|