获取一条移交记录
None.
Name | Description | Type | Additional information |
---|---|---|---|
CustId |
客户ID |
integer |
None. |
RecId |
记录Id |
integer |
None. |
{ "CustId": 1, "RecId": 2 }
<GetHandoverRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.WebApi.Areas.Customer.Models"> <CustId>1</CustId> <RecId>2</RecId> </GetHandoverRequest>
Sample not available.
获取一条移交记录
HandoverInfoName | Description | Type | Additional information |
---|---|---|---|
CustId |
客户ID |
integer |
None. |
RecId |
记录ID |
integer |
None. |
RecNo |
记录编号 |
integer |
None. |
HoType |
移交类型 |
HandoverTypeEnums |
None. |
HoFrom |
移交人 |
string |
None. |
HoTo |
接收人 |
string |
None. |
HoDate |
移交日期 |
date |
None. |
Note |
备注 |
string |
None. |
Qty |
数量 |
integer |
None. |
Belongings |
物品清单 |
Collection of BelongingInfo |
None. |
{ "CustId": 1, "RecId": 2, "RecNo": 3, "HoType": 1010, "HoFrom": "sample string 4", "HoTo": "sample string 5", "HoDate": "2025-04-04T19:24:47.5936605+08:00", "Note": "sample string 7", "Qty": 6, "Belongings": [ { "BliId": 1, "BliName": "sample string 2", "Qty": 3, "HaveRec": true, "Note": "sample string 5" }, { "BliId": 1, "BliName": "sample string 2", "Qty": 3, "HaveRec": true, "Note": "sample string 5" } ] }
<HandoverInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.Customer"> <Belongings> <BelongingInfo> <BliId>1</BliId> <BliName>sample string 2</BliName> <HaveRec>true</HaveRec> <Note>sample string 5</Note> <Qty>3</Qty> </BelongingInfo> <BelongingInfo> <BliId>1</BliId> <BliName>sample string 2</BliName> <HaveRec>true</HaveRec> <Note>sample string 5</Note> <Qty>3</Qty> </BelongingInfo> </Belongings> <CustId>1</CustId> <HoDate>2025-04-04T19:24:47.5936605+08:00</HoDate> <HoFrom>sample string 4</HoFrom> <HoTo>sample string 5</HoTo> <HoType>ReceiveToStock</HoType> <Note>sample string 7</Note> <RecId>2</RecId> <RecNo>3</RecNo> </HandoverInfo>