mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 16:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			194 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			194 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 GoEdge goedge.cdn@gmail.com. All rights reserved.
 | 
						|
 | 
						|
package monitor
 | 
						|
 | 
						|
// ItemValue 数据值定义
 | 
						|
type ItemValue struct {
 | 
						|
	Item      string
 | 
						|
	ValueJSON []byte
 | 
						|
	CreatedAt int64
 | 
						|
}
 |