POST api/retestrepository/movetoasync
将习题复制到指定题库
Request Information
URI Parameters
None.
Body Parameters
RepositoryMoveReqDtoName | Description | Type | Additional information |
---|---|---|---|
RtrId |
原试题集合 |
integer |
None. |
TargetId |
目录试题集合 |
integer |
None. |
lretestId |
要移动的试题集合 |
Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "RtrId": 1, "TargetId": 2, "lretestId": [ "e279aa66-fc4a-4967-a042-96e4ef0328fc", "2d9f9a43-398f-4c9b-97d8-2235242423d4" ] }
text/html
Sample:
{"RtrId":1,"TargetId":2,"lretestId":["e279aa66-fc4a-4967-a042-96e4ef0328fc","2d9f9a43-398f-4c9b-97d8-2235242423d4"]}
application/xml, text/xml
Sample:
<RepositoryMoveReqDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <RtrId>1</RtrId> <TargetId>2</TargetId> <lretestId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>e279aa66-fc4a-4967-a042-96e4ef0328fc</d2p1:guid> <d2p1:guid>2d9f9a43-398f-4c9b-97d8-2235242423d4</d2p1:guid> </lretestId> </RepositoryMoveReqDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
将习题复制到指定题库
JsonRtnDtoOfBooleanName | Description | Type | Additional information |
---|---|---|---|
Msg | string |
None. |
|
State | RtnState |
None. |
|
Data | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Msg": "sample string 1", "State": 100, "Data": true }
text/html
Sample:
{"Msg":"sample string 1","State":100,"Data":true}
application/xml, text/xml
Sample:
<JsonRtnDtoOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <Data>true</Data> <Msg>sample string 1</Msg> <State>Display</State> </JsonRtnDtoOfboolean>
text/javascript, application/javascript, application/json-p
Sample:
/**/ typeof === 'function' && ({"Msg":"sample string 1","State":100,"Data":true});