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;
|
|
/**
|
* 是否自动确认 MES 发送的玻璃信息
|
*/
|
private Boolean autoAck = Boolean.TRUE;
|
}
|