mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 23:20:26 +08:00
19 lines
364 B
Go
19 lines
364 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(this.Content, p)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
p.RequestId = this.RequestId
|
|
p.RequestBody = this.RequestBody
|
|
return p, nil
|
|
}
|