Merge branch 'build-auth-sms' of git.selly.red:Selly-Modules/natsio into develop

This commit is contained in:
Tue 2022-11-01 11:40:51 +07:00
commit 15fd01d5d3
2 changed files with 18 additions and 11 deletions

View File

@ -17,3 +17,10 @@ type RoleBrief struct {
type CreateRoleResponse struct { type CreateRoleResponse struct {
ID string `json:"_id"` ID string `json:"_id"`
} }
type RoleShort struct {
ID string `json:"_id"`
Name string `json:"name"`
Code string `json:"code"`
Type string `json:"type"`
}

View File

@ -6,17 +6,17 @@ type GetListOwnerResponse struct {
} }
type SupplierUserBrief struct { type SupplierUserBrief struct {
ID string `json:"_id"` ID string `json:"_id"`
Role RoleBrief `json:"role"` Role RoleShort `json:"role"`
Supplier SupplierShort `json:"supplier"` SupplierID string `json:"supplierId"`
Name string `json:"name"` Name string `json:"name"`
Phone string `json:"phone"` Phone string `json:"phone"`
Email string `json:"email"` Email string `json:"email"`
Status string `json:"status"` Status string `json:"status"`
Avatar interface{} `json:"avatar"` Avatar interface{} `json:"avatar"`
Type string `json:"type"` Type string `json:"type"`
CreatedAt string `json:"createdAt"` CreatedAt string `json:"createdAt"`
UpdatedAt string `json:"updatedAt"` UpdatedAt string `json:"updatedAt"`
} }
type CreateOwnerResponse struct { type CreateOwnerResponse struct {