鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
4 天以前 a01eec9f761ffcc11d42da0a82595e720427dd68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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;
import java.util.List;
 
/**
 * @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 = "是否减焦化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;
}