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;
|
}
|