using Admin.NET.Application; namespace Admin.NET.Application; /// /// pda收货输出参数 /// public class PurchaseOrderDetailsForPDAOutput { public long Id { get; set; } /// /// 物料编号 /// public string MaterialCode { get; set; } /// /// 物料名称 /// public string MaterialName { get; set; } /// /// ASN单号 /// public string AsnNo { get; set; } /// /// 单据状态 /// public OrderStatusEnum AsnStatus { get; set; } /// /// 供应商批次 /// public string? SupplierBatch { get; set; } /// /// 批次 /// public string? Batch { get; set; } /// /// 采购数量 /// public decimal? POQuantity { get; set; } /// /// 送货数量 /// public decimal? Quantity { get; set; } /// /// 已收数量 /// public decimal? GoodsQuantity { get; set; } /// /// 单据状态名称 /// [Required] public string AsnStatusName { get; set; } /// /// PO单号 /// [Required] public string PoNo { get; set; } /// /// Asn单明细行号 /// [Required] public string AsnLineNumber { get; set; } /// /// 是否冻结 /// public bool? IsFreeze { get; set; } public string PoUnit { get; set; } public string MaterialUnit { get; set; } public decimal? TranslateRate { get; set; } public decimal? MaxImumqty { get; set; } /// /// 库存数量 /// public decimal? StockQty { get; set; } }