using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DM_Weight.Models { /// /// 盘点后药品库存数 /// public class CheckRecordStock { public int ID { get; set; } /// /// 抽屉号 /// public int rowNo { get; set; } /// /// 列号 /// public int colNo { get; set; } /// /// 数量 /// public int quantity { get; set; } /// /// 批次 /// public string manuNo { get; set; } /// /// 效期 /// public string effDate { get; set; } /// /// 药品名称 /// public string drugName { get; set; } /// /// 规格 /// public string drugSpec { get; set; } // public string packUnit { get; set; } /// /// 厂商 /// public string manufactory { get; set; } public int maxStock { get; set; } public string drugId { get; set; } public string MachineId { get; set; } /// /// 批次总库存 /// public int ManuQuantity { get; set; } /// /// 操作时间 /// public string optdate { get; set; } /// /// 操作人 /// public string operatorUser { get; set; } /// /// 审核人 /// public string reviewerUser { get; set; } public List manuNoDetails { get;set; } public DrugInfo DrugInfo { get; set; } } }