wuyouming666
2024-04-03 181990a78c139291eb3b4c0cebb505989b682480
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
package com.mes.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
/**
 * big_storage_cage大理片笼表实体类
 */
@Data  //lombok 简写java代码 实体类的get与set
@TableName("big_storage_cage")
public class BigStorageCage {
 
    /**
     * 主键,自动递增
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 设备id
     */
    private Integer deviceId;
 
    /**
     * 栅格号
     */
    private String slot;
 
    /**
     * 启用状态
     */
    private String enableState;
 
    /**
     * 剩余宽度
     */
    private Integer remainWidth;
 
    /**
     * 理片笼详情
     */
    private BigStorageCageDetails bigStorageCageDetail;
}