26 lines
408 B
Go
26 lines
408 B
Go
package model
|
|
|
|
import "server/internal/model/entity"
|
|
|
|
type SystemOutput struct {
|
|
entity.System
|
|
}
|
|
|
|
type SystemUniqueInput struct {
|
|
Key string
|
|
Lock
|
|
}
|
|
type Lock bool
|
|
type SystemAdsOutput struct {
|
|
Index string `json:"index"`
|
|
}
|
|
|
|
type SystemVersionOutput struct {
|
|
Ios map[string]string `json:"ios"`
|
|
Android map[string]string `json:"android"`
|
|
}
|
|
type SystemSaveInput struct {
|
|
Key string
|
|
Value string
|
|
}
|