新增对象深拷贝通用函数,新增wms载具更换函数

This commit is contained in:
DEVICE8\12494
2023-05-31 14:34:31 +08:00
parent 70e01de66c
commit 38a62de63a
15 changed files with 333 additions and 29 deletions

View File

@@ -1,7 +0,0 @@
namespace Tnb.WarehouseMgr.Interfaces
{
public class Class1
{
}
}

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Interfaces
{
public class IWmsCarryEntity
{
string carry_id { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using Tnb.WarehouseMgr.Entities;
namespace Tnb.WarehouseMgr.Interfaces
{
/// <summary>
/// 载具服务接口
/// </summary>
public interface IWmsCarryService
{
/// <summary>
/// 更新空载具
/// </summary>
/// <param name="entity"></param>
/// <returns></returns>
Task<int> UpdateNullCarry(WmsCarryH carryObj);
}
}