GET api/EmployeePerformance/GetEmployeePersonalPerformanceByYear?beginDate={beginDate}&endDate={endDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| beginDate | date |
Required |
|
| endDate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
InfoResultOfListOfEmployeePerformanceByYearDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of EmployeePerformanceByYearDto |
None. |
|
| IsSuccess |
是否成功:true:成功,false:失败 |
boolean |
None. |
| Msg |
返回消息 |
string |
None. |
| Extra |
特定信息 |
string |
None. |
| Code |
内部代码:[成功 000000|失败 000001|未登陆/未授权 000002] |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
{
"SumProportion": 1.0,
"itemProportion": 2.0,
"orderMonth": "2026-03-31 21:49:23",
"Proportion": 1.1
},
{
"SumProportion": 1.0,
"itemProportion": 2.0,
"orderMonth": "2026-03-31 21:49:23",
"Proportion": 1.1
}
],
"IsSuccess": true,
"Msg": "sample string 2",
"Extra": "sample string 3",
"Code": "sample string 4"
}
application/xml, text/xml
Sample:
<InfoResultOfArrayOfEmployeePerformanceByYearDto8taVmWcU xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMS.Core.ShareData">
<Code>sample string 4</Code>
<Extra>sample string 3</Extra>
<IsSuccess>true</IsSuccess>
<Msg>sample string 2</Msg>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/CMS.Domain.Dto">
<d2p1:EmployeePerformanceByYearDto>
<d2p1:Proportion>1.1</d2p1:Proportion>
<d2p1:SumProportion>1</d2p1:SumProportion>
<d2p1:itemProportion>2</d2p1:itemProportion>
<d2p1:orderMonth>2026-03-31T21:49:23.3234807+08:00</d2p1:orderMonth>
</d2p1:EmployeePerformanceByYearDto>
<d2p1:EmployeePerformanceByYearDto>
<d2p1:Proportion>1.1</d2p1:Proportion>
<d2p1:SumProportion>1</d2p1:SumProportion>
<d2p1:itemProportion>2</d2p1:itemProportion>
<d2p1:orderMonth>2026-03-31T21:49:23.3234807+08:00</d2p1:orderMonth>
</d2p1:EmployeePerformanceByYearDto>
</Data>
</InfoResultOfArrayOfEmployeePerformanceByYearDto8taVmWcU>