package com.zy.api.entity; import lombok.Data; import java.util.List; /** * Device Status Response Object * Corresponds to the map returned by OpenController.getDeviceStatus */ @Data public class DeviceStatusVo { /** * Stacker Crane (CRN) Data List */ private List crnList; /** * RGV Device Config List * Note: The controller returns the DeviceConfig list for RGV, not the protocol status list. */ private List rgvList; /** * Dual-Station Stacker Crane Data List */ private List dualCrnList; /** * Conveyor Station Data List */ private List stationList; }