feat: add shelve management functionality
This commit is contained in:
13
internal/models/responses/shelve_response.go
Normal file
13
internal/models/responses/shelve_response.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package responses
|
||||
|
||||
type CreateShelveResponse struct {
|
||||
ID int64 `json:"id"`
|
||||
}
|
||||
|
||||
type UpdateShelveResponse struct {
|
||||
ID int64 `json:"id"`
|
||||
CabinetID int64 `json:"cabinetId"`
|
||||
Name string `json:"name"`
|
||||
LevelIndex int32 `json:"levelIndex"`
|
||||
Description string `json:"description"`
|
||||
}
|
||||
Reference in New Issue
Block a user