namespace Tnb.WarehouseMgr.Entities.Dto
{
///
/// 更换载具输入参数
///
public class ExChangeCarryInput
{
///
/// 老载具ID
///
public string old_carry_id { get; set; } = string.Empty;
///
/// 新载具ID
///
public string new_carry_id { get; set; } = string.Empty;
}
}