| | |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | |
| | | @Schema(description = "异常工况类型(1:高炉休风;2:产线检修)") |
| | | private Integer type; |
| | | |
| | | @Schema(description = "休风开始时间") |
| | | @Schema(description = "当前时间") |
| | | private Integer now; |
| | | |
| | | @Schema(description = "休风时间") |
| | | private Integer start; |
| | | |
| | | @Schema(description = "休风时长") |
| | |
| | | @Schema(description = "休风高炉(1/2)") |
| | | private Integer bfg; |
| | | |
| | | @Schema(description = "是否减焦化BFG(0:否,1:是)") |
| | | private Integer isReduceCog; |
| | | |
| | | @Schema(description = "焦化消耗高炉煤气下限(大于0)") |
| | | private BigDecimal limit; |
| | | |
| | | @Schema(description = "中板停机时长") |
| | | private Integer tingjiZhong; |
| | | |
| | | @Schema(description = "厚板停机时长") |
| | | private Integer tingjiHou; |
| | | |
| | | @Schema(description = "热轧停机时长") |
| | | private Integer tingjiRezha; |
| | | |
| | | @Schema(description = "先择的建议编码列表") |
| | | private List<String> adviceCodeList; |
| | | } |