84 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			84 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
|  | using System; | |||
|  | using System.Collections.Generic; | |||
|  | using System.Linq; | |||
|  | using System.Text; | |||
|  | using System.Threading.Tasks; | |||
|  | 
 | |||
|  | namespace Model | |||
|  | { | |||
|  |     public class NewSYHSEDataRealTimeDeviceItem | |||
|  |     { | |||
|  |         /// <summary> | |||
|  |         /// ID | |||
|  |         /// </summary> | |||
|  |         public string Id | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 风险名称 | |||
|  |         /// </summary> | |||
|  |         public string HazardName | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 风险等级 | |||
|  |         /// </summary> | |||
|  |         public string HazardLevel | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 设备名称 | |||
|  |         /// </summary> | |||
|  |         public string DeviceName | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 介质 | |||
|  |         /// </summary> | |||
|  |         public string Medium | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 测量单位 | |||
|  |         /// </summary> | |||
|  |         public string MeasurementUnit | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 时间 | |||
|  |         /// </summary> | |||
|  |         public string DateTime | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 评价值 | |||
|  |         /// </summary> | |||
|  |         public string Value | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |     } | |||
|  | } |