| | |
| | | package com.iailab.module.ansteel.api.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author dyk |
| | |
| | | @Schema(description = "机组名称") |
| | | private String name; |
| | | |
| | | @Schema(description = "编码") |
| | | private String code; |
| | | |
| | | @Schema(description = "月最大需量") |
| | | private String maxDemand; |
| | | private BigDecimal maxDemand; |
| | | |
| | | @Schema(description = "实测需量") |
| | | private String curDemand; |
| | | private BigDecimal curDemand; |
| | | |
| | | @Schema(description = "有功功率") |
| | | private String activePower; |
| | | private BigDecimal activePower; |
| | | |
| | | @Schema(description = "排序") |
| | | private Integer sort; |
| | | |
| | | @Schema(description = "发生时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date occurTime; |
| | | } |