Lius
2025-03-04 79bb09af27e6b2e6b4b898af7a1922e9c82f8762
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
41
42
43
44
45
46
47
package org.jeecg.modules.mdc.dto;
 
import lombok.Data;
 
/**
 * @author: LiuS
 * @create: 2023-10-11 13:47
 */
@Data
public class MdcBigScreenEquipmentDto {
 
    private String id;
 
    private String equipmentId;
 
    private String equipmentName;
 
    private String equipmentType;
 
    private String equipmentImage;
 
    private Integer oporation;
 
    private Integer equipmentStatus;
 
    private String equId;
 
    /**
     * 坐标-左
     */
    private Integer coordinateLeft;
 
    /**
     * 坐标-左
     */
    private Integer coordinateTop;
 
    /**
     * 大小-宽
     */
    private Integer vw;
 
    /**
     * 大小-高
     */
    private Integer vh;
}