28 lines
		
	
	
		
			807 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			807 B
		
	
	
	
		
			C#
		
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace CreateAccountBookConsole.Models
 | 
						|
{
 | 
						|
    public class ChannelStock
 | 
						|
    {
 | 
						|
        public string Id { get; set; }
 | 
						|
        public string Chnguid { get; set; }
 | 
						|
        public string MachineId { get; set; }
 | 
						|
        public int RowNo { get; set; }
 | 
						|
        public int ColNo { get; set; }
 | 
						|
        public int PosNo { get;set; }
 | 
						|
        public string DrugId { get; set; }
 | 
						|
        public string ManuNO { get;set; }
 | 
						|
        public string EffDate { get; set; }
 | 
						|
        public int Quantity { get; set; }
 | 
						|
        public int DrawerType { get; set; }
 | 
						|
        public int BoardType { get; set; }
 | 
						|
 | 
						|
        public int ManuNoQuantity { get; set; }
 | 
						|
        public int TotalQuantity { get; set; }
 | 
						|
    }
 | 
						|
}
 |