4005.获取已缴费明细

4005.获取已缴费明细

接口描述

可根据需求更改出参字段

Request / 说明

参数名
类型
描述
必填
TransCode
文本
ZB4005
必填
TransSerialNo
文本
业务流水号
必填
UserID
文本
用户ID
必填
TranFlow
整型
单据号
必填

Request / 示例

``` <Request> <TransCode>ZB4005</TransCode> <TransSerialNo>20200907143306</TransSerialNo> <TranFlow>248525</TranFlow> <UserID>8080</UserID> </Request> ```

Response / 说明

参数名
类型
描述
必填
RepCode
整型
返回值(-1错误0正确)
必填
RepMsg
文本
错误信息
必填
RepData
XML
返回信息
必填
Result
XML
费用明细
必填
ItemName
文本
项目名称
必填
ItemCategory
文本
项目分类
必填
Spec
文本
规格
必填
Unit
文本
单位
必填
Price
数值
单价
必填
Quantity
数值
数量
必填
TotalCost
数值
金额
必填
DoctorName
文本
医生姓名
必填
DeptName
文本
执行科室
必填

Response / 示例

``` <Response> <RepCode>0</RepCode> <RepMsg></RepMsg> <RepData> <Result> <ItemName>茯苓</ItemName> <ItemCategory>中草药费</ItemCategory> <Spec>1g/g</Spec> <Unit>g</Unit> <Price>0.073800</Price> <Quantity>100.0000</Quantity> <TotalCost>7.38</TotalCost> <DoctorName>张**</DoctorName> <DeptName>饮片药房</DeptName> </Result> <Result> <ItemName>白术</ItemName> <ItemCategory>中草药费</ItemCategory> <Spec>1g/g</Spec> <Unit>g</Unit> <Price>0.093800</Price> <Quantity>40.0000</Quantity> <TotalCost>3.75</TotalCost> <DoctorName>张**</DoctorName> <DeptName>饮片药房</DeptName> </Result> </RepData> </Response> ```