using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Dongke.IBOSS.PRD.WCF.DataModels.PDAModule { public class DeliveryNoteInquiry { /// /// 生产工号 /// public string ProductionID { get; set; } /// /// 发出仓库 /// public string SendOutWarehouse { get; set; } /// /// 接收仓库 /// public string ReceivingWarehouse { get; set; } /// /// 车牌号 /// public string LicensePlateNumber { get; set; } /// /// 记账日期 /// public string PostingDate { get; set; } /// /// 送货日期 /// public string DeliveryDate { get; set; } /// /// 同步状态 /// public string SynchronizationStatus { get; set; } /// /// 撤销状态 /// public string Revoke { get; set; } } }