20 lines
		
	
	
		
			450 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			450 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Text;
 | 
						|
 | 
						|
namespace APT.Utility
 | 
						|
{
 | 
						|
    public class ImportTempData
 | 
						|
    {
 | 
						|
        //生产单元名称
 | 
						|
        public string Name { get; set; }
 | 
						|
        //数量
 | 
						|
        public string QTY { get; set; }
 | 
						|
        //日期
 | 
						|
        public string START_TIME { get; set; }
 | 
						|
        public string END_TIME { get; set; }
 | 
						|
        //生产单元ID
 | 
						|
        public Guid METER_NODE_ID { get; set; }
 | 
						|
    }
 | 
						|
}
 |