34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace CreateAccountBookConsole.Models
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// 日结存、总结存表
 | 
						|
    /// </summary>
 | 
						|
    public class AccountBookG2
 | 
						|
    {
 | 
						|
        public int Id { get; set; }
 | 
						|
        public int DrugId { get; set; }
 | 
						|
        public int Type { get; set; }
 | 
						|
        public string Department { get;set; }
 | 
						|
        public string InvoiceNo { get; set; }
 | 
						|
        public string OrderNo { get; set; }
 | 
						|
        public string ManuNo { get; set; }  
 | 
						|
        public string EffDate { get; set;}
 | 
						|
        public int YesterDayQuantity { get; set; }
 | 
						|
        public int AddQuantity { get; set; }
 | 
						|
        public int OutQuantity { get; set; }
 | 
						|
        public int ManuStock { get; set; }
 | 
						|
        public int TotalStock { get; set; }
 | 
						|
        public int UserId1 { get; set; }
 | 
						|
        public int UserId2 { get; set;}
 | 
						|
        public string MachineId { get; set; }
 | 
						|
        public string CreateDate { get; set; }
 | 
						|
        public DateTime CreateTime { get; set; }
 | 
						|
    }
 | 
						|
}
 |