mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 07:50:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			380 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			380 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package models
 | 
						|
 | 
						|
import (
 | 
						|
	"encoding/json"
 | 
						|
	"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
 | 
						|
)
 | 
						|
 | 
						|
// ToPB 转换成PB对象
 | 
						|
func (this *HTTPAccessLog) ToPB() (*pb.HTTPAccessLog, error) {
 | 
						|
	p := &pb.HTTPAccessLog{}
 | 
						|
	err := json.Unmarshal([]byte(this.Content), p)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	p.RequestId = this.RequestId
 | 
						|
	p.RequestBody = []byte(this.RequestBody)
 | 
						|
	return p, nil
 | 
						|
}
 |