中车、寄点站点融合
This commit is contained in:
@ -0,0 +1,47 @@
|
||||
package com.ho.business.vo.resp;
|
||||
|
||||
import com.alibaba.fastjson.JSONArray;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 主监控汇总信息
|
||||
*/
|
||||
@Data
|
||||
public class ShipStationRespVO {
|
||||
|
||||
@ApiModelProperty(value = "储能系统累计收益,单位(元)")
|
||||
private Float incomeSum;
|
||||
@ApiModelProperty(value = "储能系统昨⽇收益")
|
||||
private Float incomeYesterday;
|
||||
@ApiModelProperty(value = "储能系统累计充电量,单位(kWh)")
|
||||
private Float positivePowerSum;
|
||||
@ApiModelProperty(value = "储能系统累计放电量,单位(kWh)")
|
||||
private Float reversePowerSum;
|
||||
@ApiModelProperty(value = "储能系统今⽇充电量,单位(kWh)")
|
||||
private Float positivePowerToday;
|
||||
@ApiModelProperty(value = "储能系统今⽇放电量,单位(kWh)")
|
||||
private Float reversePowerToday;
|
||||
@ApiModelProperty(value = "储能系统实时功率,单位(kw)")
|
||||
private Float realTimePower;
|
||||
@ApiModelProperty(value = "关⼝表电压,单位(v)")
|
||||
private Float voltage;
|
||||
@ApiModelProperty(value = "储能系统剩余电量,单位(kwh)")
|
||||
private Float surplus;
|
||||
@ApiModelProperty(value = "储能系统剩余SOC")
|
||||
private Float soc;
|
||||
@ApiModelProperty(value = "储能系统装机容量,单位(kWh)")
|
||||
private Integer capacity;
|
||||
@ApiModelProperty(value = "储能系统投运时⻓,单位(天)")
|
||||
private Integer operationTime;
|
||||
@ApiModelProperty(value = "储能系统能量链数量,单位(条)")
|
||||
private Integer eLinkNumber;
|
||||
@ApiModelProperty(value = "储能系统在线能量链数量,单位(条)")
|
||||
private Integer eLinkOnline;
|
||||
@ApiModelProperty(value = "储能系统能量块数量,单位(个)")
|
||||
private Integer eBLockNumber;
|
||||
@ApiModelProperty(value = "储能系统在线能量块数量,单位(个)")
|
||||
private Integer eBlockOnline;
|
||||
@ApiModelProperty(value = "储能系统今⽇功率和soc曲线")
|
||||
private JSONArray historyDataList;
|
||||
}
|
||||
Reference in New Issue
Block a user