build auth sms

This commit is contained in:
Tue 2022-10-31 16:59:38 +07:00
parent 64ad17016c
commit 0d8e3969db
1 changed files with 9 additions and 7 deletions

View File

@ -15,6 +15,7 @@ type CreateRoleRequest struct {
Name string `json:"name"`
Code string `json:"code"`
Type string `json:"type"`
Permissions []string `json:"permissions"`
}
type UpdateRoleRequest struct {
@ -22,4 +23,5 @@ type UpdateRoleRequest struct {
Name string `json:"name"`
Code string `json:"code"`
Type string `json:"type"`
Permissions []string `json:"permissions"`
}