2021-01-25 16:40:03 +08:00
|
|
|
package models
|
|
|
|
|
|
2022-03-21 21:39:36 +08:00
|
|
|
import "github.com/iwind/TeaGo/dbs"
|
|
|
|
|
|
|
|
|
|
// ClientSystem 终端操作系统信息
|
2021-01-25 16:40:03 +08:00
|
|
|
type ClientSystem struct {
|
2022-03-21 21:39:36 +08:00
|
|
|
Id uint32 `field:"id"` // ID
|
|
|
|
|
Name string `field:"name"` // 系统名称
|
|
|
|
|
Codes dbs.JSON `field:"codes"` // 代号
|
|
|
|
|
State uint8 `field:"state"` //
|
2021-01-25 16:40:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ClientSystemOperator struct {
|
|
|
|
|
Id interface{} // ID
|
|
|
|
|
Name interface{} // 系统名称
|
|
|
|
|
Codes interface{} // 代号
|
|
|
|
|
State interface{} //
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func NewClientSystemOperator() *ClientSystemOperator {
|
|
|
|
|
return &ClientSystemOperator{}
|
|
|
|
|
}
|