POST api/{version}/v1/PowerStation/GetKpiByPowerStationId
获取电站KPI指标
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
None. |
Body Parameters
PowerStationBaseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PowerStationId |
电站ID |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"powerStationId": "sample string 1"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
KPIModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DailyYield |
日发电量 |
decimal number |
None. |
| DailyIncome |
日收益 |
decimal number |
None. |
| CumulativeYield |
累计发电量 |
decimal number |
None. |
| CumulativeIncome |
累计收益 |
decimal number |
None. |
| Pac |
功率 |
decimal number |
None. |
| YieldRate |
收益率 |
decimal number |
None. |
| Currency |
收益单位 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"dailyYield": 1.1,
"dailyIncome": 2.1,
"cumulativeYield": 3.1,
"cumulativeIncome": 4.1,
"pac": 5.1,
"yieldRate": 6.1,
"currency": "sample string 7"
}