package com.iailab.module.ansteel.api.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2025年03月26日
|
*/
|
@Schema(description="休风指令")
|
@Data
|
public class PowerTransferReqVO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
@Schema(description = "异常工况类型(1:高炉休风;2:产线检修)")
|
private Integer type;
|
|
@Schema(description = "当前时间")
|
private Integer now;
|
|
@Schema(description = "休风开始时间")
|
private Integer start;
|
|
@Schema(description = "休风时长")
|
private Integer mins;
|
|
@Schema(description = "休风高炉(1/2)")
|
private Integer bfg;
|
|
@Schema(description = "焦化消耗高炉煤气下限(大于0)")
|
private BigDecimal limit;
|
}
|