zhoushihao
2024-12-17 52287925ae0004d67d99929daf6755ceab0f732d
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
package com.mes.bigstorage.entity.vo;
 
import lombok.Data;
 
/**
 * @Author : zhoush
 * @Date: 2024/6/13 15:51
 * @Description:
 */
@Data
public class BigStorageDetailsQueryVO {
    /**
     * 设备id
     */
    private Integer deviceId;
    /**
     * 流程卡
     */
    private String flowCardId;
    /**
     * 膜系
     */
    private String filmsId;
    /**
     *最小宽度
     */
    private Integer minWidth;
    /**
     *最大宽度
     */
    private Integer maxWidth;
    /**
     *最小高度
     */
    private Integer minHeight;
    /**
     *最大高度
     */
    private Integer maxHeight;
}