新增对象深拷贝通用函数,新增wms载具更换函数
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 更换载具输入参数
|
||||
/// </summary>
|
||||
|
||||
public class ExChangeCarryInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 老载具ID
|
||||
/// </summary>
|
||||
public string old_carry_id { get; set; }
|
||||
/// <summary>
|
||||
/// 新载具ID
|
||||
/// </summary>
|
||||
public string new_carry_id { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user