POST api/YjlRemoteRcp/AddRcpTransRecord

添加处方流转记录

Request Information

URI Parameters

None.

Body Parameters

RcpTrans
NameDescriptionTypeAdditional information
ID

ID

integer

None.

RcpGUID

处方GUID

string

None.

PrevUserID

发起人ID(医师/药师ID)

integer

None.

TargetUserID

接收人ID(医师/药师ID)

integer

None.

RcpInitPlat

处方发起平台,10:PC端发起,20:移动端发起

integer

None.

WaitingTime

流转等待时间(秒)

integer

None.

TransProcess

流转过程,10:医师流转给医师,20:药师流转给药师

integer

None.

RcpNowBelong

处方当前归属,10:医师 20:药师

integer

None.

TransTime

流转时间

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "RcpGUID": "sample string 2",
  "PrevUserID": 1,
  "TargetUserID": 1,
  "RcpInitPlat": 1,
  "WaitingTime": 1,
  "TransProcess": 1,
  "RcpNowBelong": 1,
  "TransTime": "2025-12-11T23:15:58.8193006+08:00"
}

application/xml, text/xml

Sample:
<RcpTrans xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YCloud.Rcp.Entity.RcpWeb">
  <ID>1</ID>
  <PrevUserID>1</PrevUserID>
  <RcpGUID>sample string 2</RcpGUID>
  <RcpInitPlat>1</RcpInitPlat>
  <RcpNowBelong>1</RcpNowBelong>
  <TargetUserID>1</TargetUserID>
  <TransProcess>1</TransProcess>
  <TransTime>2025-12-11T23:15:58.8193006+08:00</TransTime>
  <WaitingTime>1</WaitingTime>
</RcpTrans>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

添加处方流转记录

ResponseModelOfBoolean
NameDescriptionTypeAdditional information
rows

boolean

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": true,
  "total": 2,
  "errorMsg": "sample string 3",
  "errorCode": "sample string 4",
  "records": 5,
  "page": 1,
  "extend": {}
}

application/xml, text/xml

Sample:
<ResponseModelOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YCloud.Rcp.Entity.WebResponse">
  <errorCode>sample string 4</errorCode>
  <errorMsg>sample string 3</errorMsg>
  <extend />
  <page>1</page>
  <records>5</records>
  <rows>true</rows>
  <total>2</total>
</ResponseModelOfboolean>