Update permission #4
|
@ -30,7 +30,7 @@ func (Request) UpdateStaff(payload Staff) (*Response, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetInfoStaff ...
|
// GetInfoStaff ...
|
||||||
func (Request) GetInfoStaff(payload *CommonQuery) (*Response, error) {
|
func (Request) GetInfoStaff(payload GetInfoStaff) (*Response, error) {
|
||||||
return requestNats(SubjectRequestNatsStaffGetInfo, toBytes(payload))
|
return requestNats(SubjectRequestNatsStaffGetInfo, toBytes(payload))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,11 @@ type CommonQuery struct {
|
||||||
StaffID string `json:"staffID"`
|
StaffID string `json:"staffID"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetInfoStaff ...
|
||||||
|
type GetInfoStaff struct {
|
||||||
|
Condition interface{} `json:"condition"`
|
||||||
|
}
|
||||||
|
|
||||||
// Log ...
|
// Log ...
|
||||||
type Log struct {
|
type Log struct {
|
||||||
Reference string `json:"reference"`
|
Reference string `json:"reference"`
|
||||||
|
|
Loading…
Reference in New Issue