using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.ERPWMS.Entity { public class ReplyPOArrivalDateEntity { //采购订单号 public string POCode { get; set; } //采购订单行号 public int? Sequence { get; set; } //SRM拆行 public int? SubSequence { get; set; } //预计到货数量 public float? Quantity { get; set; } //预计到货日期 public string dReplyArriveDate { get; set; } //站点 public string WorkPoint { get; set; } } }