2024-10-20 00:32:55 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type ServerGroupServer struct {
|
|
|
|
Common
|
2024-10-21 23:00:51 +08:00
|
|
|
ServerGroupId uint64 `json:"server_group_id" gorm:"uniqueIndex:idx_server_group_server"`
|
|
|
|
ServerId uint64 `json:"server_id" gorm:"uniqueIndex:idx_server_group_server"`
|
2024-10-20 00:32:55 +08:00
|
|
|
}
|