22 lines
482 B
C#
22 lines
482 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using SqlSugar;
|
|
using Tnb.WarehouseMgr.Entities;
|
|
|
|
namespace Tnb.WarehouseMgr
|
|
{
|
|
/// <summary>
|
|
/// 电梯业务类
|
|
/// </summary>
|
|
public class WmsElevatorService : WmsBasicDataBase<WmsElevatorH>
|
|
{
|
|
public WmsElevatorService(ISqlSugarRepository<WmsElevatorH> repo)
|
|
{
|
|
DbContext = repo.AsSugarClient();
|
|
}
|
|
}
|
|
}
|