package com.mes.job.entity; import lombok.Data; /** * @Author : zhoush * @Date: 2024/9/20 10:56 * @Description: */ @Data public class CacheGlassInfo { /** * 请求字 */ private String requestWord; /** * 请求字 */ private String confirmationWrod; /** * 玻璃id */ private String glassId; /** * 机1状态 */ private String oneMachineState; /** * 机2状态 */ private String twoMachineState; /** * 一号卧式当前格子 */ private int oneCurrentSlot; /** * 二号卧式当前格子 */ private int twoCurrentSlot; }