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
| package com.mes.hollow.entity.vo;
|
| import lombok.Data;
|
| /**
| * @Author : zhoush
| * @Date: 2024/12/23 10:48
| * @Description:
| */
| @Data
| public class HollowBigStorageDetailsQueryVO {
| /**
| * 设备id
| */
| private Integer deviceId;
| /**
| * 流程卡
| */
| private String flowCardId;
| /**
| * 膜系
| */
| private String filmsId;
| /**
| * 厚度
| */
| private int thickness;
| /**
| * 客户名称
| */
| private String customerName;
| /**
| * 产品名称
| */
| private String productName;
|
| }
|
|