19 lines
481 B
C#
19 lines
481 B
C#
using JSMachine.WMS.Domain.Entity;
|
|
using JSMachine.WMS.Domain.IRepository;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JSMachine.WMS.Domain.Repository
|
|
{
|
|
public class ElevatorCountRepository : BccBaseRepository<ElevatorCount>, IElevatorCountRepository
|
|
{
|
|
public ElevatorCountRepository(SqlSugarScope sqlSugarScope) : base(sqlSugarScope)
|
|
{
|
|
}
|
|
}
|
|
}
|