20 lines
		
	
	
		
			478 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			478 B
		
	
	
	
		
			C#
		
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace DM_Weight.Models
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// 逐日消耗专用账册中数量及批号
 | 
						|
    /// </summary>
 | 
						|
    public class AccountTotalQuantity
 | 
						|
    {
 | 
						|
        //领药数量、发药数量、结存数量
 | 
						|
        public string StrTotalQuantity { get; set; }
 | 
						|
        //数量对应的批号
 | 
						|
        public string StrTotalManuNo { get; set; }
 | 
						|
    }
 | 
						|
}
 |