wms-be/pkg/dto/response.go

39 lines
633 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"`
}
InventoryResponse struct {
ID string `json:"id"`
DocumentNumber string `json:"document_number"`
}
)