first commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user