操作系统和浏览器ID字段改为bigint

This commit is contained in:
GoEdgeLab
2022-12-03 20:49:46 +08:00
parent 0365d6f64a
commit 837f55ac1e
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ import "github.com/iwind/TeaGo/dbs"
// ClientBrowser 终端浏览器信息
type ClientBrowser struct {
Id uint32 `field:"id"` // ID
Id uint64 `field:"id"` // ID
Name string `field:"name"` // 浏览器名称
Codes dbs.JSON `field:"codes"` // 代号
CreatedDay string `field:"createdDay"` // 创建日期YYYYMMDD

View File

@@ -4,7 +4,7 @@ import "github.com/iwind/TeaGo/dbs"
// ClientSystem 终端操作系统信息
type ClientSystem struct {
Id uint32 `field:"id"` // ID
Id uint64 `field:"id"` // ID
Name string `field:"name"` // 系统名称
Codes dbs.JSON `field:"codes"` // 代号
CreatedDay string `field:"createdDay"` // 创建日期YYYYMMDD