old mode 100644
new mode 100755
| | |
| | | package org.jeecg.modules.dry.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.models.auth.In; |
| | | import lombok.Data; |
| | | import lombok.ToString; |
| | | import org.jeecg.modules.dry.entity.DryEquipment; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | @Data |
| | | @ToString |
| | | public class RealTimeDataVo { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /**工单ID*/ |
| | | private String orderId; |
| | |
| | | /**药材名称*/ |
| | | private String name; |
| | | |
| | | /**租户ID*/ |
| | | private Integer tenantid; |
| | | |
| | | /**设备编号*/ |
| | | private String machineid; |
| | | /**荡料延时*/ |
| | | private Integer delay; |
| | |
| | | /**热风 true/冷风 false*/ |
| | | private Boolean wind; |
| | | |
| | | /**环境温度*/ |
| | | private Double envtemp; |
| | | /**环境湿度*/ |
| | | private Double envhum; |
| | | |
| | | /**电能消耗**/ |
| | | private Double watt; |
| | | |
| | | /**蒸汽消耗**/ |
| | | private Double steam; |
| | | |
| | | /**状态**/ |
| | | |
| | | |
| | | /**故障**/ |
| | | private String eqp_fault; |
| | | |
| | | private Integer ai_total_time; |
| | | |
| | | private Integer ai_time; |
| | | |
| | | |
| | | /**工单状态*/ |
| | | private Integer workorder_status; |
| | | |
| | | /**各部位状态**/ |
| | | // private Map<String, Object> eqp_state; |
| | | |
| | | /**设备状态**/ |
| | | private String eqp_status; |
| | | |
| | | |
| | | /**设备报警**/ |
| | | private String eqp_warning; |
| | | |
| | | |
| | | private String level; |
| | | |
| | | |
| | | |
| | | |
| | | } |