2022-10-20 07:32:32 +00:00
|
|
|
package model
|
|
|
|
|
2022-10-27 02:09:48 +00:00
|
|
|
type CreateSupplierUserOwnerResponse struct {
|
|
|
|
ID string `json:"_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type CreateSupplierUserStaffResponse struct {
|
2022-10-20 07:32:32 +00:00
|
|
|
ID string `json:"_id"`
|
|
|
|
}
|
2022-10-21 04:49:48 +00:00
|
|
|
|
|
|
|
type GetListPermissionResponse struct {
|
|
|
|
Permission []string `json:"permission"`
|
|
|
|
}
|