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

This commit is contained in:
刘祥超
2022-12-03 20:49:46 +08:00
parent a660fb1f42
commit c9ba24dc96
2 changed files with 2 additions and 2 deletions

View File

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

View File

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