POST Api/Mobile/Check/UpdateFPGL

传入条码号与血糖值修改数据库

Request Information

URI Parameters

None.

Body Parameters

BaseRequestOfFPGLCold
NameDescriptionTypeAdditional information
QueryType

string

None.

OrgCold

string

None.

Data

FPGLCold

None.

Request Formats

application/json, text/json

Sample:
{
  "QueryType": "sample string 1",
  "OrgCold": "sample string 2",
  "Data": {
    "ColdID": "sample string 1",
    "FPGL": "sample string 2",
    "CHOL": "sample string 3",
    "TG": "sample string 4",
    "LDL": "sample string 5",
    "HDL": "sample string 6"
  }
}

application/xml, text/xml

Sample:
<BaseRequestOfFPGLColdrgM_S79lN xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.MobileAPI.Areas.Models">
  <Data>
    <CHOL>sample string 3</CHOL>
    <ColdID>sample string 1</ColdID>
    <FPGL>sample string 2</FPGL>
    <HDL>sample string 6</HDL>
    <LDL>sample string 5</LDL>
    <TG>sample string 4</TG>
  </Data>
  <OrgCold>sample string 2</OrgCold>
  <QueryType>sample string 1</QueryType>
</BaseRequestOfFPGLColdrgM_S79lN>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BaseRequest`1'.

Response Information

Resource Description

BaseResponse
NameDescriptionTypeAdditional information
ResponseCode

返回Code

integer

None.

ResponseMsg

返回信息

string

None.

ResponseData

返回数据Json字符串

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "ResponseMsg": "sample string 2",
  "ResponseData": "sample string 3"
}

application/xml, text/xml

Sample:
<BaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.MobileAPI.Areas.Models">
  <ResponseCode>1</ResponseCode>
  <ResponseData>sample string 3</ResponseData>
  <ResponseMsg>sample string 2</ResponseMsg>
</BaseResponse>