GET api/GD/GetFeeInfoById?fid={fid}

根据ID获取一个费用记录

请求参数信息

URI 参数

NameDescriptionTypeAdditional information
fid

string

Required

Body 参数

None.

接口返回信息

返回信息说明

JMResponseOfGDFeeDetailEntity
NameDescriptionTypeAdditional information
code

string

None.

msg

string

None.

data

GDFeeDetailEntity

None.

返回数据格式

application/json, text/json

Sample:
{
  "code": "sample string 1",
  "msg": "sample string 2",
  "data": {
    "FId": "sample string 1",
    "GD_FNumber": "sample string 2",
    "FeeRuleId": "sample string 3",
    "FeeTypeCode": "sample string 4",
    "CreateAmount": 1.0,
    "CheckAmount": 1.0,
    "SourceType": 0,
    "FDescription": "sample string 5",
    "FCreatorTime": "2026-02-04 21:57:09",
    "FCreatorUserId": "sample string 6",
    "FCheckStatus": 0,
    "FCheckDescription": "sample string 7",
    "FFinalApprovalStatus": 1,
    "FFinalApprovalDescription": "sample string 8",
    "FinalAmount": 1.0
  }
}

application/xml, text/xml

Sample:
<JMResponseOfGDFeeDetailEntity8FrIkT2R xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WLYServices.APIApplication.Models">
  <code>sample string 1</code>
  <data xmlns:d2p1="http://schemas.datacontract.org/2004/07/WLYServices.Domain.Entity.GDManage">
    <d2p1:CheckAmount>1</d2p1:CheckAmount>
    <d2p1:CreateAmount>1</d2p1:CreateAmount>
    <d2p1:FCheckDescription>sample string 7</d2p1:FCheckDescription>
    <d2p1:FCheckStatus>待提交</d2p1:FCheckStatus>
    <d2p1:FCreatorTime>2026-02-04T21:57:09.3191168+08:00</d2p1:FCreatorTime>
    <d2p1:FCreatorUserId>sample string 6</d2p1:FCreatorUserId>
    <d2p1:FDescription>sample string 5</d2p1:FDescription>
    <d2p1:FFinalApprovalDescription>sample string 8</d2p1:FFinalApprovalDescription>
    <d2p1:FFinalApprovalStatus>待审批</d2p1:FFinalApprovalStatus>
    <d2p1:FId>sample string 1</d2p1:FId>
    <d2p1:FeeRuleId>sample string 3</d2p1:FeeRuleId>
    <d2p1:FeeTypeCode>sample string 4</d2p1:FeeTypeCode>
    <d2p1:FinalAmount>1</d2p1:FinalAmount>
    <d2p1:GD_FNumber>sample string 2</d2p1:GD_FNumber>
    <d2p1:SourceType>服务站报单</d2p1:SourceType>
  </data>
  <msg>sample string 2</msg>
</JMResponseOfGDFeeDetailEntity8FrIkT2R>