using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.Entity { public class POStockRefuseModel { //拒收单ID public string ID { get; set; } //拒收单号 public string TransCode { get; set; } //数量 public string Quantity { get; set; } //操作人 public string User { get; set; } //操作时间 public string MTime { get; set; } //站点 public string WorkPoint { get; set; } //明细 public List Detail { get; set; } } public class POStockRefuseDetailModel { //行号 public string Sequence { get; set; } //条码 public string LotNo { get; set; } //拒收调入库位 public string locationCode { get; set; } } }