15 lines
		
	
	
		
			358 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			358 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package meta
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| 
 | |
| 	"git.loafle.net/overflow/model/util"
 | |
| )
 | |
| 
 | |
| type MetaCrawlerInputItem struct {
 | |
| 	ID            json.Number     `json:"id,Number,omitempty"`
 | |
| 	MetaInputType *MetaInputType  `json:"metaInputType,omitempty"`
 | |
| 	Key           string          `json:"key,omitempty"`
 | |
| 	CreateDate    *util.Timestamp `json:"createDate,omitempty"`
 | |
| }
 |