POST api/CheckIdentity/HasSellRecord

调用存储过程,判断指定的证件号码和门票类型是否在系统中已有购票记录

Request Information

URI Parameters

None.

Body Parameters

CheckIdentityHasSellRecordParm
NameDescriptionTypeAdditional information
RQ

日期

string

None.

ZJHM

证件号码

string

None.

MPLXID

门票类型ID

globally unique identifier

None.

TXQLXID

通行券类型ID

globally unique identifier

None.

YQID

园区ID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "RQ": "sample string 1",
  "ZJHM": "sample string 2",
  "MPLXID": "7c93ea0b-7b42-408a-9bd1-34efb08ca944",
  "TXQLXID": "7c7f0f01-13d1-4552-8646-f96ab0aeb733",
  "YQID": "sample string 5"
}

application/xml, text/xml

Sample:
<CheckIdentityHasSellRecordParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DigitalScience.DataTransfer.Tour.V5.Parm">
  <MPLXID>7c93ea0b-7b42-408a-9bd1-34efb08ca944</MPLXID>
  <RQ>sample string 1</RQ>
  <TXQLXID>7c7f0f01-13d1-4552-8646-f96ab0aeb733</TXQLXID>
  <YQID>sample string 5</YQID>
  <ZJHM>sample string 2</ZJHM>
</CheckIdentityHasSellRecordParm>

application/x-www-form-urlencoded

Sample:

Sample not available.

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

Response Information

Resource Description

调用存储过程,判断指定的证件号码和门票类型是否在系统中已有购票记录

CommonOperationResultWithTagOfDictionaryOfStringAndObject
NameDescriptionTypeAdditional information
errcode

integer

None.

errmsg

string

None.

tag

Dictionary of string [key] and Object [value]

None.

Response Formats

application/json, text/json

Sample:
{
  "errcode": 1,
  "errmsg": "sample string 2",
  "tag": {
    "sample string 1": {},
    "sample string 3": {}
  }
}

application/xml, text/xml

Sample:
<CommonOperationResultWithTagOfArrayOfKeyValueOfstringanyTypeuHEDJ7Dj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DigitalScience.DataTransfer">
  <errcode>1</errcode>
  <errmsg>sample string 2</errmsg>
  <tag xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
  </tag>
</CommonOperationResultWithTagOfArrayOfKeyValueOfstringanyTypeuHEDJ7Dj>

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.