30 lines
		
	
	
		
			907 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			907 B
		
	
	
	
		
			C#
		
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace CreateAccountBookConsole.Models
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// 专用账册
 | 
						|
    /// </summary>
 | 
						|
    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; }
 | 
						|
    }
 | 
						|
}
 |