wuyouming666
2024-02-28 d765f491fe415a218975892c6f4651c13764e1f3
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
package com.mes.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
@Data
public class DownStorageCageDetails {
 
    @TableId(type = IdType.AUTO)
    private int id; // 下片前理片笼明细表id
 
    private int deviceId; // 设备id
    private int slot; // 栅格号
    private int glassId; // 玻璃id
    private int sequence; // 小片在格内的顺序
    private String flowCardId; // 流程卡号
    private int glassType; // 玻璃类型
    private double width; // 宽
    private double height; // 高
    private double thickness; // 厚度
    private int temperingLayoutId; // 钢化版图id
    private int temperingFeedSequence; // 钢化版图片序
    private int state; // 状态
    private int gap; // 玻璃间隙
}