mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-06 18:10:25 +08:00
操作系统和浏览器ID字段改为bigint
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user