using System;
using System.ComponentModel.DataAnnotations;
namespace Win_in.Sfs.Wms.DataExchange.WMS.PurchaseReceipt;
public class PurchaseReceiptNoteDetailExchangeDto
{
// ///
// /// 订单号
// ///
// [Display(Name = "订单号")]
// public string PoNumber { get; set; }
// ///
// /// 订单行
// ///
// [Display(Name = "订单行")]
// public string PoLine { get; set; }
///
/// 库位组
///
[Display(Name = "Erp库位")]
public string LocationErpCode { get; set; }
///
/// 箱标签
///
[Display(Name = "箱标签")]
public string PackingCode { get; set; }
// ///
// /// 托标签
// ///
// [Display(Name = "托标签")]
// public string ContainerCode { get; set; }
///
/// 计量单位
///
[Display(Name = "计量单位")]
public string Uom { get; set; }
///
/// 数量
///
[Display(Name = "数量")]
public decimal Qty { get; set; }
// ///
// /// 标包计量单位
// ///
// [Display(Name = "标包计量单位")]
// public string StdPackUom { get; set; }
// ///
// /// 标包数量
// ///
// [Display(Name = "标包数量")]
// public decimal StdPackQty { get; set; }
// ///
// /// 仓库代码
// ///
// [Display(Name = "仓库代码")]
// public string WarehouseCode { get; set; }
///
/// 批次
///
[Display(Name = "批次")]
public string Lot { get; set; }
// ///
// /// 到货时间
// ///
// [Display(Name = "到货时间")]
// public DateTime ArriveDate { get; set; } = DateTime.Now;
///
/// 生产时间
///
[Display(Name = "生产时间")]
public DateTime ProduceDate { get; set; } = DateTime.Now;
// ///
// /// 过期时间
// ///
// [Display(Name = "过期时间")]
// public DateTime ExpireDate { get; set; } = DateTime.MaxValue;
///
/// ERP料号
///
[Display(Name = "ERP料号")]
public string ItemCode { get; set; }
[Display(Name = "备注")]
public string Remark { get; set; }
}