using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Entities.Dto { /// /// 入库单据物料明细信息 /// public class InStockDetailOutput { /// /// 入库单明细Id /// public string id { get; set; } /// /// 入库单Id /// public string bill_id { get; set; } /// /// 单位id /// public string unit_id { get; set; } /// /// 批次 /// public string code_batch { get; set; } /// /// 入库仓库Id /// public string warehouse_id { get; set; } /// /// 执行状态 /// public string line_status { get; set; } /// /// 原因 /// public string reason { get; set; } /// /// 需求数量 /// public int pr_qty { get; set; } /// /// 实际入库数量 /// public int qty { get; set; } /// /// 不含税单价 /// public decimal? price { get; set; } /// /// 含税单价 /// public decimal? tax_price { get; set; } /// /// 不含税金额 /// public decimal? amount { get; set; } /// /// 含税金额 /// public decimal? all_amount { get; set; } /// /// 已打印数量 /// public int print_qty { get; set; } /// /// 扫描数量 /// public int scan_qty { get; set; } /// /// 物品代码 /// public string material_code { get; set; } = string.Empty; /// /// 条码明细 /// public List CodeDetails { get; set; } } }