| | |
| | | package com.iailab.module.ansteel.api.dto; |
| | | |
| | | import com.alibaba.fastjson.annotation.JSONField; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | |
| | | @Schema(description = "节点名称") |
| | | private String nodeName; |
| | | |
| | | @Schema(description = "当前电流") |
| | | private BigDecimal curA; |
| | | |
| | | @Schema(description = "当前有功") |
| | | private BigDecimal curP; |
| | | |
| | |
| | | @Schema(description = "下限") |
| | | private BigDecimal limitL; |
| | | |
| | | @Schema(description = "功率因数是否超限(0:正常,1:超限)") |
| | | @Schema(description = "是否有电流(0:无,1:有)") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "排序") |
| | | private Integer sort; |
| | | |
| | | @Schema(description = "有功是否超限(0:正常,1:超限)") |
| | | private Integer pStatus; |
| | | private Integer pstatus; |
| | | |
| | | @Schema(description = "无功是否超限(0:正常,1:超限)") |
| | | private Integer qStatus; |
| | | private Integer qstatus; |
| | | |
| | | |
| | | @Schema(description = "功率因数是否超限(0:正常,1:超限)") |
| | | private Integer cosStatus; |
| | | } |