ZengTao
2025-04-01 a52b87449e493d4312cc81c33a4169eb6be3c144
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
47
48
49
50
51
52
package com.mes.bigstorage.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
/**
 * (BigStorageGlassRelationInfo)表实体类
 *
 * @author makejava
 * @since 2024-11-24 10:17:43
 */
@Data
public class BigStorageGlassRelationInfo {
    /**
     * /*钢化玻璃关系表id
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    private String engineerId;
    /**
     * /*玻璃id
     */
    private String glassId;
    /**
     * /*钢化版图id
     */
    private Integer temperingLayoutId;
    /**
     * /*钢化版图片序
     */
    private Integer temperingFeedSequence;
    /**
     * /*虚拟格子
     */
    private Integer virtualSlot;
    /**
     * /*格子内次序
     */
    private Integer slotSequence;
    /**
     * /*实际笼子号
     */
    private Integer deviceId;
    /**
     * /*实际格子号
     */
    private Integer slot;
 
 
}