鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
2025-04-13 fc0cd9cb4452d86c47c362f849d3643d23d01d67
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
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;
}