POST api/FeeMaterial/CreateFeeMaterialHandedOutDtl?DomainId={DomainId}&AccountId={AccountId}&PersonId={PersonId}
创建发货单明细
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| DomainId |
域Id |
globally unique identifier |
None. |
| AccountId |
账户Id |
globally unique identifier |
None. |
| PersonId |
人员Id |
globally unique identifier |
None. |
Body Parameters
TS182_FeeMaterialHandedOutDetailInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| TID | globally unique identifier |
None. |
|
| DomainID | globally unique identifier |
None. |
|
| LastUpdatePersonID | string |
None. |
|
| LastUpdateAccountID | string |
None. |
|
| LastUpdateDateTime | date |
None. |
|
| CreatePersonID | string |
None. |
|
| CreateAccountID | string |
None. |
|
| CreateDateTime | date |
None. |
|
| IsDelete | boolean |
None. |
|
| MaterialApplyID | globally unique identifier |
None. |
|
| MaterialApplyDtlID | globally unique identifier |
None. |
|
| ApplyCount | decimal number |
None. |
|
| HandedOutCount | decimal number |
None. |
|
| Price | decimal number |
None. |
|
| Amount | decimal number |
None. |
|
| Sequence | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"TID": "78499ee5-733e-4fb0-adef-8ea47e3b4ce2",
"DomainID": "58a273c2-25e4-4a30-88ef-405c61375457",
"LastUpdatePersonID": "sample string 1",
"LastUpdateAccountID": "sample string 2",
"LastUpdateDateTime": "2025-12-17 05:46:27",
"CreatePersonID": "sample string 3",
"CreateAccountID": "sample string 4",
"CreateDateTime": "2025-12-17 05:46:27",
"IsDelete": true,
"MaterialApplyID": "0f799a85-710c-481c-bb56-b3cb612a43fc",
"MaterialApplyDtlID": "1ee47324-8f50-4871-adcb-b0d52f337251",
"ApplyCount": 1.0,
"HandedOutCount": 1.0,
"Price": 1.0,
"Amount": 1.0,
"Sequence": 1
}
application/xml, text/xml
Sample:
<TS182_FeeMaterialHandedOutDetailInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Entity"> <Amount>1</Amount> <ApplyCount>1</ApplyCount> <CreateAccountID>sample string 4</CreateAccountID> <CreateDateTime>2025-12-17T05:46:27.9347884+08:00</CreateDateTime> <CreatePersonID>sample string 3</CreatePersonID> <DomainID>58a273c2-25e4-4a30-88ef-405c61375457</DomainID> <HandedOutCount>1</HandedOutCount> <IsDelete>true</IsDelete> <LastUpdateAccountID>sample string 2</LastUpdateAccountID> <LastUpdateDateTime>2025-12-17T05:46:27.9347884+08:00</LastUpdateDateTime> <LastUpdatePersonID>sample string 1</LastUpdatePersonID> <MaterialApplyDtlID>1ee47324-8f50-4871-adcb-b0d52f337251</MaterialApplyDtlID> <MaterialApplyID>0f799a85-710c-481c-bb56-b3cb612a43fc</MaterialApplyID> <Price>1</Price> <Sequence>1</Sequence> <TID>78499ee5-733e-4fb0-adef-8ea47e3b4ce2</TID> </TS182_FeeMaterialHandedOutDetailInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModelOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | ReturnCode |
None. |
|
| Message | string |
None. |
|
| Data | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 200,
"Message": "sample string 1",
"Data": true
}
application/xml, text/xml
Sample:
<ResultModelOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Utility"> <Code>Success</Code> <Data>true</Data> <Message>sample string 1</Message> </ResultModelOfboolean>