GET api/CaseSys/PaymentMethod/PMByMainBody?mainBody={mainBody}
根据单位主体获取收/付款方式
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
mainBody | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FA_PaymentMethodName | Description | Type | Additional information |
---|---|---|---|
PMID | integer |
None. |
|
paymentMethod | string |
None. |
|
deptId | integer |
None. |
|
sortIndex | integer |
None. |
|
del | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "PMID": 1, "paymentMethod": "sample string 2", "deptId": 1, "sortIndex": 1, "del": true }, { "PMID": 1, "paymentMethod": "sample string 2", "deptId": 1, "sortIndex": 1, "del": true } ]
application/xml, text/xml
Sample:
<ArrayOfFA_PaymentMethod xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SunOAWebAPI.Areas.CaseSys.Data"> <FA_PaymentMethod> <PMID>1</PMID> <del>true</del> <deptId>1</deptId> <paymentMethod>sample string 2</paymentMethod> <sortIndex>1</sortIndex> </FA_PaymentMethod> <FA_PaymentMethod> <PMID>1</PMID> <del>true</del> <deptId>1</deptId> <paymentMethod>sample string 2</paymentMethod> <sortIndex>1</sortIndex> </FA_PaymentMethod> </ArrayOfFA_PaymentMethod>