wuyouming666
2024-03-26 0b30ecf9d6581b4e7a6f7b397ced716acaeaefc0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.mes.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
@Data
public class DownGlassInfo {
 
    @TableId(type = IdType.AUTO)
    private Integer id; // 下片玻璃信息表id
 
    private String flowCardId; // 流程卡号
    private Integer sequence; // 顺序
    private Double width; // 宽
    private Double height; // 高
    private Double thickness; // 厚度
 
}