载具新增批量新增接口

This commit is contained in:
yang.lee
2023-11-20 11:51:13 +08:00
parent fd31f60c46
commit 82dfc486bf
5 changed files with 91 additions and 20 deletions

View File

@@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using SqlSugar;
using Tnb.WarehouseMgr.Entities;
namespace Tnb.WarehouseMgr
@@ -13,9 +8,6 @@ namespace Tnb.WarehouseMgr
/// </summary>
public class WmsElevatorService : WmsBasicConfBase<WmsElevatorH>
{
public WmsElevatorService(ISqlSugarRepository<WmsElevatorH> repo)
{
DbContext = repo.AsSugarClient();
}
public WmsElevatorService(ISqlSugarRepository<WmsElevatorH> repo) => DbContext = repo.AsSugarClient();
}
}