using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CreateAccountBookConsole.Models { /// /// 专用账册 /// public class SpecialAccountBook { public int Id { get; set; } public string YearDM { get; set; } public string ManuNo { get; set; } public string EffDate { get; set; } public int BeforeQuantity { get; set; } public int InQuantity { get; set; } public int TotalQuantity { get; set; } public string DrawerNo { get; set; } public int Quantity { get; set; } public string PharmacyUser { get; set; } public string InPharmacy { get; set; } public string OperatorUser { get; set; } public string OperatorCheck { get;set; } public DateTime CreateTime { get; set; } } }