GET api/ALRptBill/getALRows
返回对应的预警消息报表数据
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| AlModel | AlModel is JSON
AlModel
{
string BizA_id //当前预警消息的对应的值
string Form_id //当前预警消息的对应的值
} |
Define this parameter in the request URI. |
Response Information
返回报表行数据的列表
Response body formats
application/json, text/json
Sample:
[
{
"Key_id": "sample string 1"
},
{
"Key_id": "sample string 1"
},
{
"Key_id": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfALBillModal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
<ALBillModal>
<Key_id>sample string 1</Key_id>
</ALBillModal>
<ALBillModal>
<Key_id>sample string 1</Key_id>
</ALBillModal>
<ALBillModal>
<Key_id>sample string 1</Key_id>
</ALBillModal>
</ArrayOfALBillModal>