鞍钢鲅鱼圈能源管控系统后端代码
潘志宝
2 天以前 bd97649e51a4bbfae4aa485c89fdcc52f27fe17f
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
package com.iailab.module.ansteel.api.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
 
/**
 * @author dyk
 * @date 2025年04月18日
 */
@Data
public class PowerMaxDemandMainDTO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "id")
    private String id;
 
    @Schema(description = "发生时间")
    private Date occurTime;
 
    @Schema(description = "编号")
    private String code;
 
    @Schema(description = "名称")
    private String name;
 
    @Schema(description = "最大需量")
    private BigDecimal maxDemand;
 
    @Schema(description = "最大需量详情")
    private List<PowerMaxdemandDetDTO> children;
}