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<CrnProtocol> crnList;
|
|
/**
|
* RGV Device Config List
|
* Note: The controller returns the DeviceConfig list for RGV, not the protocol status list.
|
*/
|
private List<DeviceConfig> rgvList;
|
|
/**
|
* Dual-Station Stacker Crane Data List
|
*/
|
private List<DualCrnProtocol> dualCrnList;
|
|
/**
|
* Conveyor Station Data List
|
*/
|
private List<StationProtocol> stationList;
|
}
|