阶段性提交

This commit is contained in:
刘祥超
2020-08-21 12:32:33 +08:00
parent 5924b8a5f3
commit 844503dcb8
20 changed files with 2294 additions and 263 deletions

View File

@@ -3,6 +3,7 @@ package models
// 服务
type Server struct {
Id uint32 `field:"id"` // ID
UniqueId string `field:"uniqueId"` // 唯一ID
IsOn uint8 `field:"isOn"` // 是否启用
UserId uint32 `field:"userId"` // 用户ID
AdminId uint32 `field:"adminId"` // 管理员ID
@@ -18,6 +19,7 @@ type Server struct {
type ServerOperator struct {
Id interface{} // ID
UniqueId interface{} // 唯一ID
IsOn interface{} // 是否启用
UserId interface{} // 用户ID
AdminId interface{} // 管理员ID