GET api/exportarchivepaper/checkproccess?id={id}

检查进度

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

检查进度

JsonRtnDtoOfCheckProccess
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

CheckProccess

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": {
    "TotalNum": 1,
    "ProgressNum": 2,
    "CheckOK": 3,
    "CheckFail": 4,
    "IsEnd": true
  }
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":{"TotalNum":1,"ProgressNum":2,"CheckOK":3,"CheckFail":4,"IsEnd":true}}

application/xml, text/xml

Sample:
<JsonRtnDtoOfCheckProccessv3CTEUQJ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data>
    <CheckFail>4</CheckFail>
    <CheckOK>3</CheckOK>
    <LastedTime>2024-09-25T00:09:03.6403114+08:00</LastedTime>
    <ProgressNum>2</ProgressNum>
    <TotalNum>1</TotalNum>
  </Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfCheckProccessv3CTEUQJ>

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":{"TotalNum":1,"ProgressNum":2,"CheckOK":3,"CheckFail":4,"IsEnd":true}});