14 lines
377 B
C#
14 lines
377 B
C#
using JSMachine.WMS.Domain.Entity;
|
|
using JSMachine.WMS.Domain.IRepository;
|
|
using SqlSugar;
|
|
|
|
namespace JSMachine.WMS.Domain.Repository
|
|
{
|
|
public class ElevatorPlcQueueRepository : BccBaseRepository<ElevatorPlcQueue>, IElevatorPlcQueueRepository
|
|
{
|
|
public ElevatorPlcQueueRepository(SqlSugarScope sqlSugarScope) : base(sqlSugarScope)
|
|
{
|
|
}
|
|
}
|
|
}
|