POST WorkPlan/AddDataToPlan
Request Information
URI Parameters
None.
Body Parameters
WorkPlan_Main| Name | Description | Type | Additional information |
|---|---|---|---|
| IId | integer |
None. |
|
| pjt_abbr | string |
None. |
|
| Maker | string |
None. |
|
| Company_Name | string |
None. |
|
| Plan_Ver | string |
None. |
|
| Plan_No | string |
None. |
|
| InsideVer | string |
None. |
|
| Create_UserId | integer |
None. |
|
| PartName | string |
None. |
|
| PartImageNo | string |
None. |
|
| CustomerVer | string |
None. |
|
| TestNo | string |
None. |
|
| JointIds | Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"IId": 1,
"pjt_abbr": "sample string 2",
"Maker": "sample string 3",
"Company_Name": "sample string 4",
"Plan_Ver": "sample string 5",
"Plan_No": "sample string 6",
"InsideVer": "sample string 7",
"Create_UserId": 8,
"PartName": "sample string 9",
"PartImageNo": "sample string 10",
"CustomerVer": "sample string 11",
"TestNo": "sample string 12",
"JointIds": [
1,
2
]
}
application/xml, text/xml
Sample:
<WorkPlan_Main xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models">
<Company_Name>sample string 4</Company_Name>
<Create_UserId>8</Create_UserId>
<CustomerVer>sample string 11</CustomerVer>
<IId>1</IId>
<InsideVer>sample string 7</InsideVer>
<JointIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:long>1</d2p1:long>
<d2p1:long>2</d2p1:long>
</JointIds>
<Maker>sample string 3</Maker>
<PartImageNo>sample string 10</PartImageNo>
<PartName>sample string 9</PartName>
<Plan_No>sample string 6</Plan_No>
<Plan_Ver>sample string 5</Plan_Ver>
<TestNo>sample string 12</TestNo>
<pjt_abbr>sample string 2</pjt_abbr>
</WorkPlan_Main>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | integer |
None. |
|
| Msg | string |
None. |
|
| Token | string |
None. |
|
| Key | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": 1,
"Msg": "sample string 2",
"Token": "sample string 3",
"Key": "sample string 4"
}
application/xml, text/xml
Sample:
<BaseResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models"> <Key>sample string 4</Key> <Msg>sample string 2</Msg> <Success>1</Success> <Token>sample string 3</Token> </BaseResult>