ZengTao
2024-11-01 eb852430ce781189ca5f9f6abcf3da539464c79e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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;
}