// return 타입
List<StorageStatDTO>
{
"보관함1" : [
{
"storageId" : long 보관함 아이디
"storageNumber" : int 보관함 넘버
"storageStat" : StorageStat 보관함 상태
"storageSize" : StorageSize 보관함 사이즈
},
...
...
]
}
```json
[
{
"storageId": 39,
"storageNumber": 1,
"storageStat": "EMPTY",
"storageSize": "SMALL"
},
{
"storageId": 40,
"storageNumber": 2,
"storageStat": "EMPTY",
"storageSize": "SMALL"
},
{
"storageId": 41,
"storageNumber": 3,
"storageStat": "EMPTY",
"storageSize": "SMALL"
},
{
"storageId": 42,
"storageNumber": 4,
"storageStat": "EMPTY",
"storageSize": "SMALL"
},
{
"storageId": 43,
"storageNumber": 5,
"storageStat": "EMPTY",
"storageSize": "SMALL"
},
{
"storageId": 44,
"storageNumber": 6,
"storageStat": "EMPTY",
"storageSize": "SMALL"
},
{
"storageId": 45,
"storageNumber": 7,
"storageStat": "EMPTY",
"storageSize": "MID"
},
{
"storageId": 46,
"storageNumber": 8,
"storageStat": "EMPTY",
"storageSize": "MID"
},
{
"storageId": 47,
"storageNumber": 9,
"storageStat": "EMPTY",
"storageSize": "MID"
},
{
"storageId": 48,
"storageNumber": 10,
"storageStat": "EMPTY",
"storageSize": "MID"
},
{
"storageId": 49,
"storageNumber": 11,
"storageStat": "EMPTY",
"storageSize": "MID"
},
{
"storageId": 50,
"storageNumber": 12,
"storageStat": "EMPTY",
"storageSize": "MID"
}
]
```
```json
[
{
"storageId": 0,
"storageNumber": 1,
"storageStat": "WAIT",
"storageSize": "SMALL"
},
{
"storageId": 1,
"storageNumber": 2,
"storageStat": "WAIT",
"storageSize": "SMALL"
},
{
"storageId": 2,
"storageNumber": 3,
"storageStat": "EMPTY",
"storageSize": "SMALL"
},
{
"storageId": 3,
"storageNumber": 4,
"storageStat": "STORE",
"storageSize": "SMALL"
},
{
"storageId": 4,
"storageNumber": 5,
"storageStat": "STORE",
"storageSize": "SMALL"
},
{
"storageId": 5,
"storageNumber": 6,
"storageStat": "EMPTY",
"storageSize": "SMALL"
},
{
"storageId": 6,
"storageNumber": 7,
"storageStat": "EMPTY",
"storageSize": "MID"
},
{
"storageId": 7,
"storageNumber": 8,
"storageStat": "EMPTY",
"storageSize": "MID"
},
{
"storageId": 8,
"storageNumber": 9,
"storageStat": "EMPTY",
"storageSize": "MID"
},
{
"storageId": 9,
"storageNumber": 10,
"storageStat": "STORE",
"storageSize": "MID"
},
{
"storageId": 10,
"storageNumber": 11,
"storageStat": "STORE",
"storageSize": "MID"
},
{
"storageId": 11,
"storageNumber": 12,
"storageStat": "EMPTY",
"storageSize": "MID"
},
{
"storageId": 12,
"storageNumber": 13,
"storageStat": "WAIT",
"storageSize": "BIG"
},
{
"storageId": 13,
"storageNumber": 14,
"storageStat": "EMPTY",
"storageSize": "BIG"
},
{
"storageId": 14,
"storageNumber": 15,
"storageStat": "EMPTY",
"storageSize": "BIG"
}
]
```