wms-be/pkg/dto/response.go

34 lines
516 B
Go

package dto
type (
IdNameResponse struct {
ID string `json:"id"`
Name string `json:"name"`
}
UserResponse struct {
ID string `json:"id"`
Name string `json:"name"`
}
RoleResponse struct {
ID string `json:"id"`
Name string `json:"name"`
}
ClientResponse struct {
ID string `json:"id"`
Name string `json:"name"`
}
PermissionResponse struct {
ID string `json:"id"`
Name string `json:"name"`
}
UomResponse struct {
ID string `json:"id"`
Name string `json:"name"`
}
)