访问日志增加区域和ISP信息

This commit is contained in:
GoEdgeLab
2020-11-05 11:51:37 +08:00
parent 6ef0d0465b
commit 2220d18538
18 changed files with 433 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package models
//
type RegionCountry struct {
Id uint32 `field:"id"` // ID
Name string `field:"name"` // 名称
Codes string `field:"codes"` // 代号
State uint8 `field:"state"` // 状态
}
type RegionCountryOperator struct {
Id interface{} // ID
Name interface{} // 名称
Codes interface{} // 代号
State interface{} // 状态
}
func NewRegionCountryOperator() *RegionCountryOperator {
return &RegionCountryOperator{}
}