You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
641 B
29 lines
641 B
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; }
|
|
}
|
|
}
|