package com.mes.interaction.workstation.config; import lombok.Data; /** * 卧转立相关设备的逻辑配置 * 对应 extraParams.deviceLogic 中的字段 */ @Data public class WorkstationLogicConfig { /** * 扫码设备发送请求的时间间隔(毫秒) */ private Integer scanIntervalMs = 10_000; /** * 卧转立到大车的运输时间(毫秒) */ private Integer transferDelayMs = 30_000; /** * 可装载的最大宽度(mm) */ private Integer vehicleCapacity = 6_000; /** * 玻璃之间的物理间隔(mm) */ private Integer glassGap = 200; }