12 lines
264 B
C#
12 lines
264 B
C#
using JSMachine.WMS.App.Dto;
|
|
using JSMachine.WMS.App.Dto.Enum;
|
|
using JSMachine.WMS.Domain.Entity;
|
|
|
|
namespace JSMachine.WMS.App.IService
|
|
{
|
|
public interface IElevatorPlcQueueService : IBaseService<ElevatorPlcQueueDto, ElevatorPlcQueue>
|
|
{
|
|
|
|
}
|
|
}
|