| | |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Schema(description = "负荷调整总量") |
| | | private BigDecimal bestTotalPower; |
| | | |
| | | @Schema(description = "煤气送管网缺口") |
| | | private BigDecimal bfgGap; |
| | | |
| | | @Schema(description = "需量缺口") |
| | | private Object demand; |
| | | |
| | | @Schema(description = "焦化减高炉煤气-时间") |
| | | private Integer cogGapTime; |
| | | @Schema(description = "煤气缺口") |
| | | private Object gasGap; |
| | | |
| | | @Schema(description = "焦化减高炉煤气-数量") |
| | | private Integer cogGapAmount; |
| | | @Schema(description = "发电") |
| | | private Object fadian; |
| | | |
| | | @Schema(description = "BFG剩余") |
| | | private BigDecimal bfgShengyue; |
| | | @Schema(description = "工序需量管控建议") |
| | | private List<PowerTransferDetRespVO> demandAdviceList; |
| | | |
| | | @Schema(description = "建议列表") |
| | | private List<PowerTransferDetRespVO> adviceList; |
| | | @Schema(description = "工序煤气管控建议") |
| | | private List<PowerTransferDetRespVO> gasAdviceList; |
| | | } |