GET /api/Payslip/getDailysalary?fMid={fMid}&st={st}&et={et}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| fMid | integer |
Required |
|
| st | date |
Required |
|
| et | date |
Required |
Body Parameters
None.
Response Information
Resource Description
薪資條_加班| Name | Description | Type | Additional information |
|---|---|---|---|
| data | Collection of datas |
None. |
|
| total | integer |
None. |
|
| type | string |
None. |
|
| fMid | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": [
{
"fId": 1,
"time": 2,
"星期": 3,
"date": "sample string 4"
},
{
"fId": 1,
"time": 2,
"星期": 3,
"date": "sample string 4"
}
],
"total": 1,
"type": "sample string 2",
"fMid": 3
}
application/xml, text/xml
Sample:
<薪資條_加班 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ERP_0512_2.Models">
<data>
<datas>
<date>sample string 4</date>
<fId>1</fId>
<time>2</time>
<星期>3</星期>
</datas>
<datas>
<date>sample string 4</date>
<fId>1</fId>
<time>2</time>
<星期>3</星期>
</datas>
</data>
<fMid>3</fMid>
<total>1</total>
<type>sample string 2</type>
</薪資條_加班>