All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.castled.models.Warehouse Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.models;

import io.castled.warehouses.WarehouseConfig;
import io.castled.warehouses.WarehouseStatus;
import io.castled.warehouses.WarehouseType;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class Warehouse {
    private Long id;
    private String name;
    private Long teamId;
    private WarehouseConfig config;
    private WarehouseStatus status;
    private WarehouseType type;
    private boolean demo;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy