POST VueApi/CalculationFunction

计算函数事件

Request Information

URI Parameters

None.

Body Parameters

CalculationFunctionReMedel
NameDescriptionTypeAdditional information
fBillTypeId

integer

None.

fObject

string

None.

fValue

string

None.

fFunctionName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "fBillTypeId": 1,
  "fObject": "sample string 2",
  "fValue": "sample string 3",
  "fFunctionName": "sample string 4"
}

application/xml, text/xml

Sample:
<CalculationFunctionReMedel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.Models.Vue">
  <fBillTypeId>1</fBillTypeId>
  <fFunctionName>sample string 4</fFunctionName>
  <fObject>sample string 2</fObject>
  <fValue>sample string 3</fValue>
</CalculationFunctionReMedel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CalculationFunctionModel
NameDescriptionTypeAdditional information
fIndex

string

None.

fFieldName

string

None.

Table

Dictionary of string [key] and Object [value]

None.

error

integer

None.

Msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "fIndex": "sample string 1",
  "fFieldName": "sample string 2",
  "Table": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "error": 3,
  "Msg": "sample string 4"
}

application/xml, text/xml

Sample:
<CalculationFunctionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.VueApi">
  <Msg>sample string 4</Msg>
  <error>3</error>
  <Table 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>
  </Table>
  <fFieldName>sample string 2</fFieldName>
  <fIndex>sample string 1</fIndex>
</CalculationFunctionModel>