|
@ -1,6 +1,7 @@ |
|
|
package com.iflytop.sgs.app.model.bo.status.device; |
|
|
package com.iflytop.sgs.app.model.bo.status.device; |
|
|
|
|
|
|
|
|
import com.iflytop.sgs.common.enums.HeatModuleCode; |
|
|
import com.iflytop.sgs.common.enums.HeatModuleCode; |
|
|
|
|
|
import com.iflytop.sgs.common.enums.HeatingType; |
|
|
import io.swagger.v3.oas.annotations.media.Schema; |
|
|
import io.swagger.v3.oas.annotations.media.Schema; |
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
|
|
|
|
|
|
@ -16,29 +17,23 @@ public class HeatModuleState { |
|
|
@Schema(description = "托盘状态,0为无托盘,1为有托盘") |
|
|
@Schema(description = "托盘状态,0为无托盘,1为有托盘") |
|
|
private int trayStatus = 0; |
|
|
private int trayStatus = 0; |
|
|
|
|
|
|
|
|
@Schema(description = "是否正在加热,true为正在加热,false为未加热") |
|
|
|
|
|
private boolean heating = false; |
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "是否正在烘干,true为正在烘干,false为未烘干") |
|
|
|
|
|
private boolean drying = false; |
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "是否正在退火,true为正在退火,false为未退火") |
|
|
|
|
|
private boolean annealing = false; |
|
|
|
|
|
|
|
|
@Schema(description = "加热类型状态") |
|
|
|
|
|
private HeatingType heatingType = HeatingType.stop; |
|
|
|
|
|
|
|
|
@Schema(description = "是否启动散热,true为正在散热,false为未在散热") |
|
|
@Schema(description = "是否启动散热,true为正在散热,false为未在散热") |
|
|
private boolean fanOpen = false; |
|
|
private boolean fanOpen = false; |
|
|
|
|
|
|
|
|
@Schema(description = "加热器目标温度") |
|
|
|
|
|
|
|
|
@Schema(description = "加热器当前目标温度") |
|
|
private Double targetTemperature = null; |
|
|
private Double targetTemperature = null; |
|
|
|
|
|
|
|
|
@Schema(description = "加热器烘干温度") |
|
|
|
|
|
private Double dryTemperature; |
|
|
|
|
|
|
|
|
@Schema(description = "加热器烘干设定温度") |
|
|
|
|
|
private Double dryTemperature = null; |
|
|
|
|
|
|
|
|
@Schema(description = "加热器退火温度") |
|
|
|
|
|
private Double annealTemperature; |
|
|
|
|
|
|
|
|
@Schema(description = "加热器退火设定温度") |
|
|
|
|
|
private Double annealTemperature = null; |
|
|
|
|
|
|
|
|
@Schema(description = "加热器加热温度") |
|
|
|
|
|
private Double heatTemperature; |
|
|
|
|
|
|
|
|
@Schema(description = "加热器加热设定温度") |
|
|
|
|
|
private Double heatTemperature = null; |
|
|
|
|
|
|
|
|
@Schema(description = "加热器当前温度") |
|
|
@Schema(description = "加热器当前温度") |
|
|
private Double temperature = null; |
|
|
private Double temperature = null; |
|
|