Update permission #4
23
struct.go
23
struct.go
|
@ -63,14 +63,25 @@ type Config struct {
|
|||
Nats natsio.Config
|
||||
}
|
||||
|
||||
// Agent ...
|
||||
type Agent struct {
|
||||
Source string `json:"source"`
|
||||
IP string `json:"ip"`
|
||||
Platform string `json:"platform"`
|
||||
Version string `json:"version"`
|
||||
}
|
||||
|
||||
// StaffCheckPermissionBody ...
|
||||
type StaffCheckPermissionBody struct {
|
||||
StaffID string `json:"staffId"`
|
||||
Token string `json:"token"`
|
||||
Permission []string `json:"permission"`
|
||||
Source string `json:"source"`
|
||||
Code string `json:"code,omitempty"`
|
||||
IsRoot string `json:"isRoot"`
|
||||
StaffID string `json:"staffId"`
|
||||
Token string `json:"token"`
|
||||
Permission []string `json:"permission"`
|
||||
Source string `json:"source"`
|
||||
Code string `json:"code,omitempty"`
|
||||
IsRoot string `json:"isRoot"`
|
||||
Agent Agent `json:"agent"`
|
||||
DeviceId string `json:"deviceId"`
|
||||
Payload PayloadCheckPermission `json:"payload"`
|
||||
}
|
||||
|
||||
// PayloadCheckPermission ...
|
||||
|
|
Loading…
Reference in New Issue