mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 07:50:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			619 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			619 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package nameservers
 | 
						|
 | 
						|
import "github.com/iwind/TeaGo/dbs"
 | 
						|
 | 
						|
// NSQuestionOption DNS请求选项
 | 
						|
type NSQuestionOption struct {
 | 
						|
	Id        uint64   `field:"id"`        // ID
 | 
						|
	Name      string   `field:"name"`      // 选项名
 | 
						|
	Values    dbs.JSON `field:"values"`    // 选项值
 | 
						|
	CreatedAt uint64   `field:"createdAt"` // 创建时间
 | 
						|
}
 | 
						|
 | 
						|
type NSQuestionOptionOperator struct {
 | 
						|
	Id        interface{} // ID
 | 
						|
	Name      interface{} // 选项名
 | 
						|
	Values    interface{} // 选项值
 | 
						|
	CreatedAt interface{} // 创建时间
 | 
						|
}
 | 
						|
 | 
						|
func NewNSQuestionOptionOperator() *NSQuestionOptionOperator {
 | 
						|
	return &NSQuestionOptionOperator{}
 | 
						|
}
 |