using System.ComponentModel.DataAnnotations;
namespace Win_in.Sfs.Wms.DataExchange.WMS.TransferNote;
public class TransferNoteDetailExchangeDto
{
///
/// 上架单号
///
[Display(Name = "移库单号")]
public string Number { get; set; }
///
/// 物品代码
///
[Display(Name = "物品代码")]
public string ItemCode { get; set; }
///
/// 目标ERP库位
///
[Display(Name = "目标ERP库位")]
public string ToLocationErpCode { get; set; }
///
/// 来源ERP库位
///
[Display(Name = "来源ERP库位")]
public string FromLocationErpCode { get; set; }
///
/// 数量
///
[Display(Name = "数量")]
public decimal Qty { get; set; }
///
/// 批次
///
[Display(Name = "批次")]
public string Lot { get; set; } = "";
///
/// 箱码
///
[Display(Name = "箱码")]
public string PackingCode { get; set; } = "";
}