POST api/YjlRemoteRcp/GetLastSignInByTime?signerId={signerId}&signerType={signerType}&signTime={signTime}
获取用户最后一次签到记录
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| signerId |
医药师ID |
integer |
Required |
| signerType |
签到身份 1:医师 2:药师 |
byte |
Required |
| signTime |
获取签到记录的时间 |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
获取用户最后一次签到记录
ResponseModelOfRcpTimeSheet| Name | Description | Type | Additional information |
|---|---|---|---|
| rows | RcpTimeSheet |
None. |
|
| total | integer |
None. |
|
| errorMsg | string |
None. |
|
| errorCode | string |
None. |
|
| records | integer |
None. |
|
| page | integer |
None. |
|
| extend | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"rows": {
"Id": 1,
"PlatformUserId": 1,
"SignerId": 2,
"SignerType": 64,
"SignInTime": "2026-02-15T13:59:06.7347751+08:00",
"SignOutTime": "2026-02-15T13:59:06.7347751+08:00",
"Remark": "sample string 5"
},
"total": 1,
"errorMsg": "sample string 2",
"errorCode": "sample string 3",
"records": 4,
"page": 1,
"extend": {}
}
application/xml, text/xml
Sample:
<ResponseModelOfRcpTimeSheetbZO_SqzYM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YCloud.Rcp.Entity.WebResponse">
<errorCode>sample string 3</errorCode>
<errorMsg>sample string 2</errorMsg>
<extend />
<page>1</page>
<records>4</records>
<rows xmlns:d2p1="http://schemas.datacontract.org/2004/07/YCloud.Rcp.Entity.WebRequest">
<d2p1:Id>1</d2p1:Id>
<d2p1:PlatformUserId>1</d2p1:PlatformUserId>
<d2p1:Remark>sample string 5</d2p1:Remark>
<d2p1:SignInTime>2026-02-15T13:59:06.7347751+08:00</d2p1:SignInTime>
<d2p1:SignOutTime>2026-02-15T13:59:06.7347751+08:00</d2p1:SignOutTime>
<d2p1:SignerId>2</d2p1:SignerId>
<d2p1:SignerType>64</d2p1:SignerType>
</rows>
<total>1</total>
</ResponseModelOfRcpTimeSheetbZO_SqzYM>