huang
2025-11-25 19f59c243e8df97c8b9fd9dba4e758be8235d68b
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
package com.mes.rawglass.station;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * (RawGlassStorageStation)表实体类
 *
 * @author makejava
 * @since 2025-07-08 16:10:04
 */
@ApiModel(description = "(RawGlassStorageStation)表实体类")
@Data
public class RawGlassStorageStation {
    
    @ApiModelProperty(hidden = true)
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @ApiModelProperty(value = "工位号", position = 2)
    private Integer deviceId;
 
    @ApiModelProperty(value = "栅格号", position = 3)
    private Integer slot;
 
    @ApiModelProperty(value = "启用/禁用", position = 4)
    private Integer enableState;
 
    @ApiModelProperty(value = "架子号", position = 5)
    private Integer shelf;
 
}